export type DOMStyleProperties = { [key in keyof Omit]?: string | number | null | undefined; }; export type AllStyleProperties = { [key: string]: string | number | null | undefined; }; export interface StyleProps extends AllStyleProperties, DOMStyleProperties { cssText?: string | null; } export interface CSSProps extends DOMStyleProperties { [key: string]: CSSProps | string | number | null | undefined; } export declare function normalizeCssValue(key: string, value: unknown): string; export declare function processStyleClass(styleObj: CSSProps, styleCache: Map): { selector: string; css: string; }; export declare function clearStyleCache(styleCache: Map): void;