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