import { SafeAny } from '@ngx-simple/core/types'; /** * 类型描述布尔输入的允许值 */ export declare type BooleanInput = string | boolean | null | undefined; /** 将数据绑定值(通常是字符串)强制为布尔值 */ export declare function toBoolean(value: SafeAny): boolean;