import { BorderImageSliceProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface BorderImageSliceProps { /** * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image. * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice */ style$BorderImageSlice: T; } export declare const borderImageSlice: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;