export declare function isDef<T>(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;
