/// 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 NavIcon: { ({ direction, color }: { direction: typeof Directions[keyof typeof Directions]; color?: string; }): JSX.Element; category: string; propTypes: { color: PropTypes.Requireable; direction: PropTypes.Validator; }; Directions: { readonly TOP: "top"; readonly BOTTOM: "bottom"; readonly LEFT: "left"; readonly RIGHT: "right"; }; };