export declare const existy: (val: T) => boolean; export declare const truthy: (val: T) => boolean; export declare const containsString: (string: string, substr: string, insensitive?: boolean) => boolean; export declare const isPrimitive: (val: T) => boolean; export declare const isFunction: (val: T) => boolean; export declare const isNumber: (val: T) => boolean; export declare const isString: (value: any) => value is string; export declare const isObjectNotArray: (val: T) => boolean; export declare const isEmptyDeep: (obj: T) => boolean; export declare const stringIncludesAny: (strings: string[], string: string, insensitive?: boolean) => boolean; //# sourceMappingURL=js-types.d.ts.map