interface ParameterStore {
    getValue: (key: string) => string | number | boolean | null;
    subscribe: (callback: (values: Record<string, string | number | boolean>) => void) => () => void;
    isLoaded: () => boolean;
}
export declare function initParameterStore(apiKey: string): ParameterStore;
export {};
