import { TextOrientationPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TextOrientationProps { /** * The **`text-orientation`** CSS property sets the orientation of the text characters in a line. It only affects text in vertical mode (when `writing-mode` is not `horizontal-tb`). It is useful for controlling the display of languages that use vertical script, and also for making vertical table headers. * * @see https://developer.mozilla.org/docs/Web/CSS/text-orientation */ style$TextOrientation: T; } export declare const textOrientation: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;