export declare type IWaymark = 1 | 2 | 3 | 'A' | 'B' | 'C' | 'D'; /** * @ignore */ export declare const WAYMARK: { [key in IWaymark]: string; }; /** * @ignore */ export declare const WAYMARK_COLOR_MAP: { red: string; yellow: string; blue: string; purple: string; }; /** * @ignore */ export declare const WAYMARK_COLOR: { [key in IWaymark]: string; };