export declare class RoutePlannerError extends Error {
    errorName: string;
    message: string;
    rawResponse: any;
    constructor(errorName: string, message: string, rawResponse: any);
}
