import { BaseSeverity } from '../../types/severity'; import { HTMLAttributes } from 'react'; export interface InputMetaProps extends HTMLAttributes { /** The hint/description */ children?: string; /** If provided, displays the current character-length and max-length */ feCharCounter?: string; /** If provided, sets the corresponding visual severity */ feSeverity?: BaseSeverity; /** If provided, displays an alternative size */ feSize?: 'md' | 'sm'; } declare const InputMeta: import("react").ForwardRefExoticComponent>; export default InputMeta;