export declare type ValueType = number | string | boolean | Date | undefined | null; export declare const isValueType: (val: any) => val is ValueType;