import { RotateProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface RotateProps { /** * The **`rotate`** CSS property allows you to specify rotation transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` property. * * @see https://developer.mozilla.org/docs/Web/CSS/rotate */ style$Rotate: T; } export declare const rotate: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;