/// declare type CnModifierMap = { [key: string]: boolean | string; }; export interface CnFn { (map?: CnModifierMap): string; (elem: string, map?: CnModifierMap): string; } interface ClassDecorator { (target: TFunction): TFunction | void; } /** * @deprecated */ declare const cnDecorator: (blockName: string) => ClassDecorator; /** * @deprecated */ export default cnDecorator; export declare type Theme = 'alfa-on-color' | 'alfa-on-white' | 'alfa-light' | 'alfa-dark'; export declare const withTheme:

(Component: import("react").ComponentType

) => import("react").ForwardRefExoticComponent & import("react").RefAttributes> & U, ThemeProvider: import("react").Provider;