/** * Parse an inline `style="..."` attribute value into a camelCase property map * suitable for handing to Satori / Takumi. * * Kept in a leaf module (no nitro / h3 imports) so it can be unit-tested * directly without pulling the full runtime bundle. */ export declare function parseStyleAttr(style: string | null | undefined): Record | undefined;