import { z } from "zod"; //#region src/cli/commands/remove.d.ts export interface RemoveOptions { workspaceId?: string; profile?: string; configPath?: string; } /** * Remove all resources managed by the current application. * @param options - Remove options * @returns Promise that resolves when removal completes */ export declare function remove(options?: RemoveOptions): Promise; //#endregion