import React from "react"; import { BasicIconProps } from "."; declare enum directions { bottom = 0, right = 1, left = 2, top = 3 } export declare type ChevronIconProps = BasicIconProps & { direction?: keyof typeof directions; size?: "default" | "small"; }; export declare const ChevronIcon: React.ForwardRefExoticComponent & React.RefAttributes>; export {};