import type { ProjectConfig } from "../../types.js";
export interface EnvVariable {
    key: string;
    value: string | null | undefined;
    condition: boolean;
}
export declare function addEnvVariablesToFile(filePath: string, variables: EnvVariable[]): Promise<void>;
export declare function setupEnvironmentVariables(config: ProjectConfig): Promise<void>;
