import { ShapeOutsideProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ShapeOutsideProps { /** * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes. * * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside */ style$ShapeOutside: T; } export declare const shapeOutside: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;