import { IConfigStore, IRootConfigValue } from './types'; export declare class SyncConfig implements IConfigStore { private config; constructor(config: IRootConfigValue); get(key: string): T | null; getAll(...args: Array): Array; getWithDefault(key: string, defaultVal: T): T; }