import { z } from "zod"; //#region src/cli/commands/show.d.ts export interface ShowOptions { workspaceId?: string; profile?: string; configPath?: string; } interface WorkspaceInfo { workspaceId: string; workspaceName: string; workspaceFolderName?: string; workspaceRegion?: string; } export interface ApplicationInfo { name: string; domain: string; url: string; auth: string; cors: string[]; allowedIpAddresses: string[]; disableIntrospection: boolean; createdAt: Date | null; updatedAt: Date | null; } export interface AIGatewayInfo { name: string; url: string; } export interface ShowInfo extends ApplicationInfo, WorkspaceInfo { aiGateways: AIGatewayInfo[]; } /** * Show applied application information for the current workspace. * @param options - Show options * @returns Deployed application, workspace, and AI Gateway information */ export declare function show(options?: ShowOptions): Promise; //#endregion