export interface InoElementsConfig { /** * A supported locale for currency number formatting. * See https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument */ currencyLocale: string; } export interface InoElementsWindow extends Window { inoElements: any; __zone_symbol__requestAnimationFrame?: (ts: FrameRequestCallback) => number; } export declare class Config { get(key: keyof InoElementsConfig, fallback?: any): any; patch(key: keyof InoElementsConfig, value?: any): void; private get storage(); } export declare const inoElementsConfig: Config; /** * Setups the config. Function to be called during initialization to set config / user preferences. * * @param config A given config */ export declare const setupConfig: (config: InoElementsConfig) => void;