import { StyleOptions } from '../../types'; export interface MarginInlineProps { /** * The **`margin-inline`** CSS property defines the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation. * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline */ style$MarginInline: T; } export declare const marginInline: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;