import type { DeployTelemetryClient } from "./telemetry"; /** Shared options every deploy target receives from `openui deploy`. */ export type DeployTargetOptions = { projectDir: string; extraArgs: string[]; prod: boolean; yes: boolean; skipEnv: boolean; noInteractive: boolean; verbose: boolean; tel: DeployTelemetryClient; }; export declare const DEPLOY_TARGETS: readonly ["vercel"]; export type DeployTarget = (typeof DEPLOY_TARGETS)[number]; export declare const DEFAULT_DEPLOY_TARGET: DeployTarget; //# sourceMappingURL=types.d.ts.map