import React, { HTMLAttributes } from 'react'; export interface FieldHintProps { /** Specifies whether hint is visible or not */ active?: boolean; /** Hint content */ children?: React.ReactNode | React.ReactNode[]; /** Width of the hint */ width?: string; } declare const FieldHint: ({ active, children, width, ...other }: FieldHintProps & HTMLAttributes) => JSX.Element; export default FieldHint;