import type { Loader } from '../../type';
export declare class ConfLoader implements Loader {
    execute(input: string): Promise<void | Record<string, any>>;
    executeSync(input: string): void | Record<string, any>;
    parse(contents: string): Record<string, any>;
}
