///
import { Observable } from 'rxjs';
import { GoogleRouteService } from './google-route';
import { H21MapRouteDirective } from '../../directives/h21-map-route.directive';
import { IBuildRoute } from '../../interfaces/build-route.interface';
export declare class GoogleRouteRailsService implements IBuildRoute {
route: GoogleRouteService;
initRoute(route: GoogleRouteService): void;
getPath(route: H21MapRouteDirective): Observable;
getSegment(route: H21MapRouteDirective, result: google.maps.DirectionsResult): google.maps.LatLng[];
}