import React from 'react'; import { FlowindSize } from '../../../styles'; interface ChevronIconProps extends React.ComponentPropsWithoutRef<'svg'> { size: FlowindSize; error: any; } export declare function ChevronIcon({ size, error, style, className, ...others }: ChevronIconProps): React.JSX.Element; export {};