import React from 'react'; type Props = { angle?: number; animate?: boolean; display?: 'flex' | 'inline-block'; children: React.ReactElement; }; declare function Rotator({ angle, animate, display, children }: Props): React.JSX.Element; export default Rotator;