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