import { BorderBlockProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface BorderBlockProps { /** * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet. * * @see https://developer.mozilla.org/docs/Web/CSS/border-block */ style$BorderBlock: T; } export declare const borderBlock: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;