///
import PropTypes from 'prop-types';
export declare const Directions: {
readonly TOP: "top";
readonly BOTTOM: "bottom";
readonly LEFT: "left";
readonly RIGHT: "right";
};
export declare const Rotations: {
left: number;
top: number;
bottom: number;
right: number;
};
export declare const Sizes: {
readonly DEFAULT: "default";
readonly SMALL: "small";
};
export declare const CaretIcon: {
({ direction, color, size }: {
direction: typeof Directions[keyof typeof Directions];
color?: string;
size?: typeof Sizes[keyof typeof Sizes];
}): JSX.Element;
category: string;
propTypes: {
color: PropTypes.Requireable;
direction: PropTypes.Validator;
size: PropTypes.Requireable;
};
Directions: {
readonly TOP: "top";
readonly BOTTOM: "bottom";
readonly LEFT: "left";
readonly RIGHT: "right";
};
Sizes: {
readonly DEFAULT: "default";
readonly SMALL: "small";
};
};