import { WritingModePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface WritingModeProps { /** * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. * * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode */ style$WritingMode: T; } export declare const writingMode: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;