/** * Coerces a data-bound value (typically a string) to a boolean. * * @param value - The value to coerce to a boolean * @returns The boolean * * @example * coerceBooleanProperty('true'); // Returns: true */ export declare const coerceBooleanProperty: (value: any) => boolean;