import { schema } from 'normalizr'; import * as types from './types/sdk'; interface MakeGeo { googleApiKey: string; } declare const makeGeo: ({ googleApiKey }: { googleApiKey: MakeGeo; }) => { getClient(): any; getDirections(start: types.GeoGoogleMapsCoords, end: types.GeoGoogleMapsCoords): Promise; fetchGeo(): Promise; schemas: { directions: schema.Entity; }; }; export default makeGeo; //# sourceMappingURL=makeGeo.d.ts.map