/** * Transforms a value to a boolean. * This is different from default `Boolean(val)`: * - It preserves boolean values as is. * - It only transforms the string 'true' (case insensitive) to true. * - All other strings, numbers, objects, null, undefined, etc. are transformed to false. * @param value The value to transform. * @returns The boolean value. */ export declare const coerceToBoolean: (value: unknown) => boolean; //# sourceMappingURL=coerceToBoolean.d.ts.map