export declare const CONFIG_PATH: string;
export declare const ConfigConstant: {
    WORKING_ACCOUNT: string;
    WORKING_REGION: string;
    WORKING_ACCESS_KEY: string;
    WORKING_SECRET_KEY: string;
};
export declare class Config {
    static get(key: string): string | undefined;
    static ask(): void;
}
