/**
 * Unified deploy command: `mastra deploy [--env <name>]`
 *
 * This is the new entry point for deploying Mastra projects.
 * It replaces `mastra studio deploy` and `mastra server deploy`.
 *
 * - Auto-creates project if missing (from package.json name)
 * - Auto-creates environment if missing (with prompt or --yes)
 * - Deploys to the specified environment (default: production)
 */
export interface DeployOptions {
    env?: string;
    org?: string;
    project?: string;
    yes?: boolean;
    config?: string;
    skipBuild?: boolean;
    skipPreflight?: boolean;
    region?: string;
    debug?: boolean;
    envFile?: string;
}
export declare function unifiedDeployAction(dir: string | undefined, opts: DeployOptions): Promise<void>;
//# sourceMappingURL=index.d.ts.map