import { IconProps } from './Icon'; export type ArrowProps = { /** * @default 'right' */ direction?: Direction; } & IconProps; type Direction = 'left' | 'right' | 'top' | 'bottom'; export declare const Arrow: import("react").MemoExoticComponent<(props: ArrowProps) => import("react/jsx-runtime").JSX.Element>; export {};