/** * Prop coercion utilities. * * @module bquery/component */ import type { PropDefinition } from './types'; /** * Coerces a string attribute value into a typed prop value. * Supports String, Number, Boolean, Object, Array, and custom converters. * * @internal * @template T - The target type * @param rawValue - The raw string value from the attribute * @param config - The prop definition with type information * @returns The coerced value of type T */ export declare const coercePropValue: (rawValue: string, config: PropDefinition) => T; //# sourceMappingURL=props.d.ts.map