import { CubeIconProps } from '@cube-dev/ui-kit'; export type ChevronIconProps = { /** * @default 'bottom' */ direction?: Direction; color?: string; } & CubeIconProps; type Direction = 'left' | 'right' | 'top' | 'bottom'; export declare const ChevronIcon: import("react").MemoExoticComponent<(props: ChevronIconProps) => import("react/jsx-runtime").JSX.Element>; export {};