import { UserType } from "../../../types"; import { DSQL_DATASQUIREL_MARIADB_USERS } from "../../../types/dsql"; type Params = { user: UserType; updatedRecord: DSQL_DATASQUIREL_MARIADB_USERS; }; type Return = { msg?: string; success?: boolean; }; export default function revokeAllExistingGrants({ user, updatedRecord, }: Params): Promise; export {};