import { CoordinatesDTO, CoordinatesWithShortKeyDTO } from './coordinates'; interface IGoogleMapBoundsDTO { southwest: CoordinatesWithShortKeyDTO; northeast: CoordinatesWithShortKeyDTO; } export interface RouteInfoDTO { distance: number; duration: number; } export interface GetDirectionsResponseDTO { bounds: IGoogleMapBoundsDTO | null; polyline: string | null; distance: number; duration: number; } export declare class GetRouteInfoDTO { origin: string; destination: string; } export declare class GetDirectionsDTO { origin: CoordinatesDTO; destination: CoordinatesDTO; } export declare class GetDirectionsMatrixDTO { origins: string[]; destinations: string[]; } export {};