type Geometry = { coordinates: number[]; type: string; }; type Properties = { addressCode: string; title: string; dataSource: string; }; interface SearchResults { geometry: Geometry; type: string; properties: Properties; } /** * search address by query */ declare const searchAddress: (q: string) => Promise; export { searchAddress };