import { UnicodeBidiPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface UnicodeBidiProps { /** * The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding. * * @see https://developer.mozilla.org/docs/Web/CSS/unicode-bidi */ style$UnicodeBidi: T; } export declare const unicodeBidi: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;