/// declare type ChevronPosition = 'left' | 'right' | 'down' | 'up'; declare type ChevronIconProps = { width?: number; height?: number; color?: string; position?: ChevronPosition; }; export declare const ChevronIcon: ({ width, height, color, position, }: ChevronIconProps) => JSX.Element; export {};