import { FC } from 'react'; type ChevronIconDirection = 'down' | 'left' | 'right' | 'up'; interface ChevronIconProps { direction: ChevronIconDirection; color?: string; } export declare const ChevronIcon: FC; export {};