import * as React from "react"; import { PropsWithChildren, ReactNode } from "react"; export type LabelHighlightVariant = "none" | "info" | "warning" | "success" | "error"; export interface LabelHighlightProps extends PropsWithChildren { variant?: LabelHighlightVariant; label: ReactNode; } export declare const LabelHighlight: React.FC;