import { type KCronConfig } from '../../types.js'; export declare class ConfigManager { private conf; constructor(filePath: string, fileName: string, humanReadable?: boolean); get store(): Record; set store(config: Record); get(key: string, defaultValue?: KCronConfig): KCronConfig | undefined; set(key: string, value: KCronConfig): void; set(obj: Record): void; reset(): void; has(key: string): boolean; delete(key: string): void; clear(): void; get size(): number; get path(): string; onDidAnyChange(callback: (newValue?: Readonly>, oldValue?: Readonly>) => void): void; }