import { ImageOrientationProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ImageOrientationProps { /** * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. * * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation */ style$ImageOrientation: T; } export declare const imageOrientation: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;