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