export declare type Lang = 'ru' | 'en'; interface Config { lang?: Lang; } declare type Subscriber = (config: Config) => void; export declare const configure: (newConfig: Config) => void; export declare const subscribeConfigure: (sub: Subscriber) => () => void; export declare const getConfig: () => Config; export {};