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