export interface VoyageTagProp {
    weight: number;
    name: string;
    key: VoyageTagKey;
    positive: boolean;
}
export declare enum VoyageTagKey {
    DANGEROUS = "DANGEROUS",
    SEVERE = "SEVERE",
    HEAVY = "HEAVY",
    DEVIATION = "deviation",
    STOPPAGE = "stoppage",
    DECELERATION = "deceleration",
    SLOW_SPEED = "slowSpeed",
    AIS_LOSS = "aisLoss",
    NO_NOON = "noNoon",
    NO_CP = "noCp",
    SEND_RPT = "sendRpt",
    SEND_BPS = "sendBps",
    SEND_PVAR = "sendPvar",
    NOT_SEND_PWFR = "notSendPwfr",
    CHECKED = "checked"
}
export declare class VoyageHelper {
    static WEATHER_TAG: Array<VoyageTagProp>;
    static SAILING_TAG: Array<VoyageTagProp>;
    static OTHER_TAG: Array<VoyageTagProp>;
}
