export declare const always: (value?: any) => boolean; export declare const never: (value?: any) => boolean; export declare const isUndefined: (value: any) => value is undefined; export declare const isNull: (value: any) => value is null; export declare const isNil: (value: any) => value is null | undefined; export declare const isMoment: (value: any) => boolean; export declare const isDate: (value: any) => value is Date; export declare const isDateLike: (value: any) => boolean;