export declare function isDef(thing: T | undefined | void): thing is T; export declare function isStr(thing: any): thing is string; export declare function isNum(thing: any): thing is number;