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