import type { SVGProps } from 'react';
export type CircleClipPathProps = {
/** Unique id for the clipPath. */
id: string;
/** x position of the center of the ClipPath circle. */
cx?: string | number;
/** y position of the center of the ClipPath circle. */
cy?: string | number;
/** radius of the ClipPath circle. */
r?: string | number;
};
/** ClipPath for clipping to the shape of a ``, pass any `` props you want. */
export default function CircleClipPath({ id, cx, cy, r, ...restProps }: CircleClipPathProps & Omit, keyof CircleClipPathProps>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CircleClipPath.d.ts.map