import { DirectusPermission } from "../../../schema/permission.js"; import { RestCommand } from "../../types.js"; //#region src/rest/commands/delete/permissions.d.ts /** * Delete multiple existing permissions rules * @param keys * @returns * @throws Will throw if keys is empty */ declare const deletePermissions: (keys: DirectusPermission["id"][]) => RestCommand; /** * Delete an existing permissions rule * @param key * @returns * @throws Will throw if key is empty */ declare const deletePermission: (key: DirectusPermission["id"]) => RestCommand; //#endregion export { deletePermission, deletePermissions }; //# sourceMappingURL=permissions.d.ts.map