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