import { z } from "zod"; //#region src/cli/commands/workspace/delete.d.ts declare const deleteWorkspaceOptionsSchema: z.ZodObject<{ workspaceId: z.ZodUUID; }, z.core.$strip>; export type DeleteWorkspaceOptions = z.input; /** * Delete a workspace by ID. * @param options - Workspace deletion options * @returns Promise that resolves when deletion completes */ export declare function deleteWorkspace(options: DeleteWorkspaceOptions): Promise; //#endregion