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