import { DirectusVersion } from "../../../schema/version.js"; import { RestCommand } from "../../types.js"; //#region src/rest/commands/delete/versions.d.ts /** * Delete multiple existing Content Versions. * @param keys * @returns * @throws Will throw if keys is empty */ declare const deleteContentVersions: (keys: DirectusVersion["id"][]) => RestCommand; /** * Delete an existing Content Version. * @param key * @returns * @throws Will throw if key is empty */ declare const deleteContentVersion: (key: DirectusVersion["id"]) => RestCommand; //#endregion export { deleteContentVersion, deleteContentVersions }; //# sourceMappingURL=versions.d.ts.map