import * as rawTaro from '@tarojs/taro'; declare const isString: (value: any) => value is string, isObject: (value: any) => value is Record, forEach: >(obj: T, fn: (value: T[keyof T], key: keyof T, obj: T) => void) => void, merge: >(...args: T[]) => T; declare function objectToQueryString(obj: Record): string; declare function getTaro(): typeof rawTaro; export { isString, isObject, forEach, merge, objectToQueryString, getTaro };