import { default as React } from 'react'; interface TabChevronProps { direction: 'left' | 'right'; onClick: () => void; backgroundColor?: string; ariaLabel?: string; } declare const TabChevron: React.FC; export default TabChevron;