import { DependencyKeyManifest } from '../constants/types'; import BaseParser from './BaseParser'; export declare const DEFAULT_PACKAGE_CONF: { Bootstrap: string[]; VCPkg: string[]; }; declare class ConfigurationParser extends BaseParser { Config: Record; constructor(FilePath?: string); get ReadJson(): Promise<{ Bootstrap: string[]; VCPkg: string[]; }>; LoadFile(FilePath?: string): Promise; get VCPKGConfig(): string[]; WriteDefaultIfNotExists(): Promise; get DependencyKey(): DependencyKeyManifest; get Triplet(): string | null; } declare const configurationParser: ConfigurationParser; export default configurationParser; //# sourceMappingURL=ConfigurationManager.d.ts.map