/** * 剔除 boolean 值 * @param {boolean|T} obj * @returns T */ export declare const omitBoolean: (obj: boolean | T) => T | undefined;