import * as React from 'react'; import { MouseEvent } from 'react'; import { ArrowSize } from '../../../types'; interface ArrowProps { direction: 'left' | 'right'; disabled: boolean; onClick: (e: MouseEvent) => void; show: boolean; classPrefix: string | undefined; size?: ArrowSize; ariaLabel?: string; customArrow?: string; } declare const Arrow: ({ direction, disabled, onClick, show, classPrefix, size, ariaLabel, customArrow, }: ArrowProps) => React.JSX.Element; export default Arrow;