export declare class ThemeManager { theme: { primaryColor: string; CTA: { textColor: string; disabledColor: string; backgroundColor: string; }; titleColor: string; subtitleColor: string; dividerColor: string; components: Extendable; }; forcedTheme: { components: Extendable; }; setTheme(overrides: Dictionary): void; getTheme(): { primaryColor: string; CTA: { textColor: string; disabledColor: string; backgroundColor: string; }; titleColor: string; subtitleColor: string; dividerColor: string; components: Extendable; }; setItem(key: string, value: any): void; getItem(key: string): any; setComponentTheme(componentName: string, overrides: Dictionary | Function): void; setComponentForcedTheme(componentName: string, overrides: Dictionary | Function): void; get components(): Extendable; get forcedThemeComponents(): Extendable; get primaryColor(): string; get CTATextColor(): string; get CTADisabledColor(): string; get CTABackgroundColor(): string; get titleColor(): string; get subtitleColor(): string; get dividerColor(): string; } declare const _default: ThemeManager; export default _default;