import { ReactNode } from 'react';
export interface HintProps {
children?: ReactNode;
classBlock?: string;
classModifiers?: string | string[] | null;
className?: string;
[key: string]: any;
}
export declare const DEFAULT_CLASS = "govuk-hint";
/**
* A hint for a form field. More information about the use of hints can be found in [GDS Hints]
* Labels and Hints are normally handled by
the [form group](/?path=/docs/d-form-group--default-story) component,
rather than by directly using the Label and Hint components themselves.
[GDS Hints]: https://design-system.service.gov.uk/components/text-input/#hint-text
*/
export declare const Hint: ({ children, classBlock, classModifiers, className, ...attrs }: HintProps) => import("react/jsx-runtime").JSX.Element;