/** * Style-string parsing, shared by `mergeProps` and the SSR serializer. * * It lived in `@sigx/server-renderer`'s render-core until `mergeProps` needed * the same edge cases (a `style` source can be a string on either side of a * merge). One implementation rather than two that drift — the parens and * comment handling below is exactly the kind of detail that would. */ /** * Parse a CSS string into a style object. * * Handles edge cases: parens in values (e.g., `linear-gradient(...)`), * CSS comments, and colons in values. */ export declare function parseStringStyle(cssText: string): Record; //# sourceMappingURL=style.d.ts.map