import React, { ReactNode } from "react"; export interface IucnLevelPillProps { level: string; children: ReactNode; } export declare const IucnLevelPill: React.FunctionComponent;