export declare const isNil: (obj: any) => obj is null | undefined; export declare const isFunction: (obj: any) => obj is Function; export declare const isString: (obj: any) => obj is string;