/// declare type Props = { width?: number; size: 'small' | 'large'; direction?: 'horizontal' | 'vertical'; onClickLeft?: () => void; onClickRight?: () => void; disableLeft?: boolean; disableRight?: boolean; }; declare const ChevronToggle: (props: Props) => JSX.Element; export default ChevronToggle;