import c from 'chalk';
import fig from 'figures';
export * from './fs';
export * from './log';
export * from './package';
export * from './prompts';
export * from './string';
export { c, fig };
interface TConfig {
    prefix?: string[];
    config: any;
}
export declare function tryImport(id: string, rootDir?: string): Promise<TConfig>;
