/**
 * Reads the YAML file
 * @param configPath to configuration file
 * @returns a yaml object
 */
declare const load: <TSchema>(configPath: string) => TSchema;
/**
 * Loads the YAML files specified by paths
 * @param paths Paths to configurations to process
 * @returns yaml objects
 */
export declare const loadAll: <TSchema>(...paths: string[]) => TSchema[];
export default load;
//# sourceMappingURL=load.d.ts.map