import { ActionResponseData } from "../../../interfaces";
export declare class RouteAction {
    private readonly raw;
    constructor(raw?: ActionResponseData);
    getRaw(): ActionResponseData;
    getType(): string;
    getStartTime(): number;
    getDuration(): number;
    getShipmentIndex(): number | undefined;
    getShipmentId(): string | undefined;
    getLocationIndex(): number | undefined;
    getLocationId(): string | undefined;
    getJobIndex(): number | undefined;
    getJobId(): string | undefined;
    getActionIndex(): number;
    getWaypointIndex(): number | undefined;
}
