import { IViewProps } from '../View'; export interface ICircleProps extends IViewProps { readonly color?: string; readonly radius?: number; readonly outline?: boolean; readonly outlineColor?: string; readonly fill?: boolean; } declare const Circle: ({ fill, color, outline, outlineColor, radius, children, ...props }: ICircleProps) => JSX.Element; export default Circle;