import type { InferSchema } from "../../src/extensions/schema/index.js"; export declare const getServerModeSchema: () => import("../../src/internal-agents/schema.js").Schema<"production" | "proxy" | "combined">; export declare const ServerModeSchema: import("../../src/internal-agents/schema.js").Schema<"production" | "proxy" | "combined">; export type ServerMode = InferSchema>; export interface ParsedArgs { _: (string | number)[]; port?: number | string; p?: number | string; __explicit?: Record; help?: boolean; h?: boolean; version?: boolean; v?: boolean; quiet?: boolean; q?: boolean; verbose?: boolean; color?: boolean; "no-color"?: boolean; "no-input"?: boolean; force?: boolean; f?: boolean; strict?: boolean; s?: boolean; template?: string; t?: string; json?: boolean; j?: boolean; with?: string[]; w?: string[]; /** Server mode: combined (default), proxy, or production */ mode?: ServerMode; m?: ServerMode; [key: string]: unknown; } //# sourceMappingURL=types.d.ts.map