/** * useConfig - Cache-first config access with automatic background refresh * * Returns cached/default value immediately, fetches fresh data in background, * and automatically updates when configuration changes. */ import type { UseConfigOptions, UseConfigResult } from '../types'; export declare function useConfig(key: string, options?: UseConfigOptions): UseConfigResult; //# sourceMappingURL=useConfig.d.ts.map