import * as React from 'react'; import { FormTypes } from '@oneblink/types'; declare function FormElementLabelContainer({ className, element, id, required, children, leading, associateLabelWithInput }: { className: string; element: FormTypes.FormElementBase; id: string; required: boolean | undefined; children: React.ReactNode; leading?: React.ReactNode; associateLabelWithInput?: boolean; }): import("react/jsx-runtime").JSX.Element; export declare function HintTooltip({ hint, inputId, }: { hint: string; inputId: string; }): import("react/jsx-runtime").JSX.Element; export declare function HintBelowLabel({ hint, inputId, }: { hint: string; inputId: string; }): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;