import { type Numeric } from './basic'; export declare const isDef: (val: T) => val is NonNullable; export declare const isFunction: (val: unknown) => val is Function; export declare const isObject: (val: unknown) => val is Record; export declare const isPromise: (val: unknown) => val is Promise; export declare const isDate: (val: unknown) => val is Date; export declare function isMobile(value: string): boolean; export declare const isNumeric: (val: Numeric) => val is string; export declare const isIOS: () => boolean;