import type { IApp } from "../../entities";
import type { InputOptions } from "../../interfaces";
type UploadDotenvOptions = {
    /**
     * Location to write down the dotenv file
     * @default process.cwd()
     */
    targetDir?: string;
    /**
     * Output file name
     * @default `.env.{env}`
     * @example ".env.dev" | ".env.prod"
     */
    fileName?: string;
    isDebugging?: boolean;
};
export declare const uploadDotenvFileByApp: (envFile: string, app: IApp, env?: string, options?: InputOptions) => Promise<IApp>;
export declare const uploadDotenvFileByAppSlug: (envFile: string, appSlug: string, env?: string, options?: InputOptions) => Promise<IApp>;
export declare const uploadDotenvFile: (env?: string, options?: UploadDotenvOptions) => Promise<IApp>;
export {};
//# sourceMappingURL=dotenv-upload.d.ts.map