import type { SVGAttributes } from 'react'; declare type ChevronProps = { direction?: 'down' | 'left' | 'right'; } & SVGAttributes; export default function Chevron({ direction, ...props }: ChevronProps): JSX.Element; export {};