export interface GeocoderProps { address?: string; location?: any[]; isGetLocation?: boolean; isGetAddress?: boolean; getLocation?: (value: any) => any; getAddress?: (value: any) => any; } declare function Geocoder(props: GeocoderProps): null; export default Geocoder;