import { CompassYaml } from '../../../types'; /** * Transforms string configFile into Compass Yaml data structure. * @throws InvalidConfigFileError If unable to parse the structure * @param configFile * @returns CompassYaml, If successfully loaded the contents else null */ export declare const loadConfigFile: (configFile: string) => CompassYaml | null;