import type { PublicConfigService, PublicConfigServiceConfig } from './publicConfig.types'; /** * Creates an instance of the Public Config Service configured to fetch * configurations from the public-config endpoint. * * @template T The expected structure of the configuration object. * @param config The service configuration options. * @returns A PublicConfigService instance. */ export declare function createPublicConfigService(config: PublicConfigServiceConfig): PublicConfigService;