import type { CompilerConfigInterface } from './Compiler'; export type ConfiguratorConfigsType = Record; export type ObjectToMergeType = Record; export type OnConfigChangedCallbackType = (config: T) => void; export interface ConfigFiles { js?: string; mjs?: string; cjs?: string; } export interface DefaultConfigInterface extends Record { compiler?: CompilerConfigInterface; } export declare class Configurator { static defaultConfigName: string; static getExistingConfigFiles(path: string): ConfigFiles; }