import * as React from "react"; import { IProps } from "./PropsType"; interface IState { } export declare class Arrow extends React.Component { static defaultProps: { prefixCls: string; backArrowColor: { value: string; opacity: string; }; frontArrowColor: { value: string; opacity: string; }; alternative: string[]; arrowData: Map; }; constructor(props: IProps); render(): JSX.Element; } export default Arrow;