import { BrowserforcePlugin } from './plugin.js'; type Drivers = { [key: string]: typeof BrowserforcePlugin; }; type Data = { settings?: unknown; }; type Config = { Driver: typeof BrowserforcePlugin; key: string; value: unknown; }; export declare class ConfigParser { static parse(drivers: Drivers, data: Data): Config[]; } export {};