//#region packages/normalization-core/src/boolean-coercion.d.ts /** Parses booleans and case-insensitive `true`/`false` string tokens. */ declare function parseBoolean(value: unknown): boolean | undefined; //#endregion export { parseBoolean as t };