import { StyleOptions } from '../../types'; export interface BorderInlineStyleProps { /** * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style */ style$BorderInlineStyle: T; } export declare const borderInlineStyle: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;