import { ShipmentSolutionData } from "../../../interfaces/nested/result/shipment-solution-data";
import { RouteAction } from "./route-action";
import { AgentSolution } from "./agent-solution";
import { Shipment } from "../input/shipment";
export declare class ShipmentSolution {
    private readonly raw;
    constructor(raw?: ShipmentSolutionData);
    getRaw(): ShipmentSolutionData;
    getAgentId(): string;
    getActions(): RouteAction[];
    getAgent(): AgentSolution;
    getShipment(): Shipment;
}
