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