import { type FunctionComponent, type ReactNode } from 'react'; import type { InputSize } from './withEnhancedInput.css'; export interface HintTextProps { hintText: ReactNode; reserveHintSpace?: boolean; disabled?: boolean; size?: InputSize; className?: string; } export declare const HintText: FunctionComponent; //# sourceMappingURL=HintText.d.ts.map