import React from 'react'; import { AddSVGProps } from '../types'; export declare type CircleProps = { /** className to apply to circle element. */ className?: string; /** reference to circle element. */ innerRef?: React.Ref; }; export default function Circle({ className, innerRef, ...restProps }: AddSVGProps): JSX.Element; //# sourceMappingURL=Circle.d.ts.map