export const angleRotation: Readonly<{
    Up: 0;
    Down: 180;
    Right: 90;
    Left: -90;
}>;
export default AngleIcon;
declare function AngleIcon({ rotation }: {
    rotation: any;
}): JSX.Element;
declare namespace AngleIcon {
    namespace defaultProps {
        import rotation = Up;
        export { rotation };
    }
}
