import type { SVGProps, ReactNode } from 'react'; export type ClipPathProps = { /** Unique id for the clipPath. */ id: string; /** clipPath children. */ children?: ReactNode; }; /** Handles rendering of and elements for you, with any children you want. */ export default function ClipPath({ id, children, ...restProps }: ClipPathProps & Omit, keyof ClipPathProps>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ClipPath.d.ts.map