import * as React from 'react'; import { WithChildrenProp } from '../utils'; export interface RotationProps extends WithChildrenProp { /** * Whether the container is rotated. Defaults to 180 (half a rotation) */ rotated?: boolean; /** * Number of degrees to rotate. Should be under 360. */ degrees?: number; /** * Height of container. Defaults to 16. */ height?: number; /** * Width of container. Defaults to 16. */ width?: number; 'aria-hidden'?: boolean; } export declare const Rotation: React.FC;