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