import { ClipPathProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface ClipPathProps { /** * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden. * * @see https://developer.mozilla.org/docs/Web/CSS/clip-path */ style$ClipPath: T; } export declare const clipPath: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;