declare type Props = { style: any; isDown: boolean; borderBottomColor?: string; }; declare const Triangle: ({ style, isDown, borderBottomColor }: Props) => JSX.Element; export default Triangle;