import { Config } from './types';
export declare function setConfig(_config: Config): void;
export declare function getConfig(): Config;
export type ProjectType = 'application' | 'library';
interface Options {
    projectType?: ProjectType;
    sourceRoot?: string;
}
export declare function defaultConfig({ projectType, sourceRoot, }?: Options): Omit<Config, 'config' | 'project' | 'scopes' | 'scopePathMap' | 'unflat' | 'command' | 'files'>;
export {};
