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