import { FormFieldProps } from './FormField.types'; declare const usePresenter: (props: FormFieldProps) => { label: string | undefined; required: boolean | undefined; infoIcon: import("react").ReactNode; children: import("react").ReactNode; messageText: string | undefined; fieldId: string; variantProps: { 'component-variant': string; }; showMessageContainer: string | true | undefined; showErrorIcon: string | false | undefined; showInfoIcon: string | false | undefined; }; export default usePresenter;