import React, { ReactNode } from "react"; export interface IucnLevelCircleProps { children: ReactNode; level: string; } export declare const IucnLevelCircle: React.FunctionComponent; export interface IucnLevelCircleRowProps { level: string; circleText?: string | number; rowText?: string | ReactNode; } export declare const IucnLevelCircleRow: React.FunctionComponent;