import { StyleOptions } from '../../types'; export interface ClipProps { /** * The **`clip`** CSS property defines what portion of an element is visible. The `clip` property applies only to absolutely positioned elements, that is elements with `position:absolute` or `position:fixed`. * * @see https://developer.mozilla.org/docs/Web/CSS/clip */ style$Clip: T; } export declare const clip: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;