/// export interface IArrowColor { value: string; opacity: string; } export interface ILaneArrow { type: LaneDirection | string; isRecommend: boolean; } export interface ITwig { width: number; height: number; color: IArrowColor; } export declare type LaneDirection = "UNKNOWN" | "TURN_LEFT" | "TURN_RIGHT" | "SHARP_RIGHT" | "RIGHT" | "FORWARD_RIGHT" | "STRAIGHT" | "FORWARD_LEFT" | "LEFT" | "SHARP_LEFT"; export declare type IPaint = LaneDirection | string; export interface IProps { prefixCls?: string; className?: string; backArrowColor: IArrowColor; frontArrowColor: IArrowColor; laneArrow?: ILaneArrow[]; leftTwig?: ITwig; rightTwig?: ITwig; style?: React.CSSProperties; alternative?: IPaint[]; arrowData?: any; }