import { ObjectArrayBoolean, ObjectArrayNumber, ObjectArrayString } from '../../lib/types/Initial/Array'; import { ObjectBoolean } from '../../lib/types/Initial/Boolean'; import { ObjectJson } from '../../lib/types/Initial/Json'; import ObjectNumber from '../../lib/types/Initial/Number/Number'; import ObjectString from '../../lib/types/Initial/String/String'; declare function withLocationField(name: string, value?: ObjectString | string, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectNumber | number, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectBoolean | boolean, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectJson | object, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectArrayBoolean, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectArrayNumber, fieldName?: string, setFieldName?: string): any; declare function withLocationField(name: string, value?: ObjectArrayString, fieldName?: string, setFieldName?: string): any; export default withLocationField;