import { CallingPoint, ServiceID, TimetableLeg } from "../../src/journey/TimetableLeg"; import { Stop, Time } from "../../src/journey/Journey"; export declare function tLeg(options?: Partial, service?: ServiceID): TimetableLeg; export declare function tl(origin: Stop, destination: Stop, departureTime: Time, arrivalTime: Time, service?: ServiceID, callingPoints?: CallingPoint[]): TimetableLeg; export declare function cPoint(options?: Partial): CallingPoint; export declare function cp(station: Stop, arrivalTime: Time, departure?: Time | undefined, pickup?: boolean, dropoff?: boolean): CallingPoint;