import React from "react";
export interface DeployOptions {
    project?: string;
    envVar?: Record<string, string>;
    env?: string;
    yes?: boolean;
    archive?: string;
    verbose?: boolean;
}
interface Props {
    file: string;
    options: DeployOptions;
}
export declare const DeployUI: React.FC<Props>;
export {};
//# sourceMappingURL=deploy.d.ts.map