/** * 判断是否为 boolean * * @param value 需要进行判断的值 * @returns {value is boolean} true 为 boolean,false 为其他类型 */ export declare const isBool: (value: any) => value is boolean; export type IsBoolType = typeof isBool;