import { StyleOptions } from '../../types'; export interface MarginBlockProps { /** * The **`margin-block`** CSS property defines the logical block 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-block */ style$MarginBlock: T; } export declare const marginBlock: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;