export interface ConfigOptions {
readonly cliName?: string;
readonly json?: string;
readonly quiet?: boolean;
}
export type ConfigCallback = (status: number) => void;
export declare const config: (type: string, cmd: ConfigOptions, callback?: ConfigCallback) => Promise<number>;