export type IYwfeConfigType = 'yapi' | 'pack' | 'npm' | 'dps' | 'init' | null;
export interface IYwfeConfigYApi {
    "yapiDomain": string;
    "email": string;
    "password": string;
    bucket: string;
    region: string;
    accessKeyId: string;
    accessKeySecret: string;
}
export declare const ywfeConfigFile: string;
export declare const REMOTE_CONFIG_URL = "http://yfe.ywwl.com/ywfe-cli/config.json";
export declare const getYWFEConfig: (name?: IYwfeConfigType) => any;
