import { type Readable } from '@vielzeug/ripple'; type StyleInput = string | number | null | undefined | false | (() => string | number | null | undefined | false) | Readable; /** * Builds a reactive inline style string from a style object. * * Takes a record of CSS property names (camelCase) with values that can be: * - Static strings/numbers * - Functions that return strings/numbers * - Signals for reactive updates * * @example * ```ts * const color = signal('red'); * const size = signal(16); * * html`
`${size.value}px`, * padding: '10px' * })}>
` * ``` */ export declare const styleMap: (record: Record) => Readable; export {}; //# sourceMappingURL=styleMap.d.ts.map