import { DirectionPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface DirectionProps { /** * The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages). * * @see https://developer.mozilla.org/docs/Web/CSS/direction */ style$Direction: T; } export declare const direction: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;