export declare type ArgsType = {
    id?: string | number;
    env: string;
    output: string;
    config: string;
    token?: string;
    url?: string;
    mode: 'replace' | 'append';
    blockList: string[];
};
export declare type ConfigType = {
    id: string | number;
    env: string;
    output: string;
    token: string;
    url: string;
    mode: 'replace' | 'append';
    blockList: string[];
};
export declare type EnvType = {
    variable_type: string;
    key: string;
    value: string;
    protected: boolean;
    masked: boolean;
    environment_scope: string;
};
