declare const _default: { get: (object: Record, pathString: string, defaultValue?: string | number | boolean | Record) => any; toFixed: (str: string | number, count: number) => string; toFilled: (str: string, count: number) => string; partition: (str: string, chunk: number) => string[]; isObject: (obj: any) => boolean; isArray: (obj: any) => boolean; isDate: (obj: any) => boolean; isRegExp: (obj: any) => boolean; isBoolean: (obj: any) => boolean; isNumerical: (obj: any) => boolean; isUndefined: (obj: any) => boolean; isNil: (obj: any) => boolean; pick: (object: Record, keys: string[]) => Record; omit: (object: Record, keys: string[]) => Record; chunk: (arr: any[], chunkSize?: number, cache?: any[]) => any[]; compareVersion: (v1: string, v2: string) => false | 0 | 1 | -1; }; export default _default;