import type { ReactNode } from 'react'; export declare enum HintVariant { error = "error", info = "info", success = "success", warning = "warning" } export interface HintProps { children: ReactNode; dismissable?: boolean; icon?: ReactNode | false; onDismissal?: () => void; variant?: keyof typeof HintVariant; visible?: boolean; }