import { SVGIconProps } from './SVGIcon'; export interface Rotation { down: number; left: number; right: number; up: number; } export interface ArrowProps extends SVGIconProps { direction?: keyof Rotation; } export declare const rotation: Rotation; export declare const ArrowIcon: ({ direction, ...props }: ArrowProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=ArrowIcon.d.ts.map