import * as React from 'react'; import { PickerAnyManager } from "../../models/manager.js"; import { UseFieldStateReturnValue } from "./useFieldState.js"; /** * Generate the props to pass to the hidden input element of the field. * @param {UseFieldHiddenInputPropsParameters} parameters The parameters of the hook. * @returns {UseFieldHiddenInputPropsReturnValue} The props to forward to the hidden input element of the field. */ export declare function useFieldHiddenInputProps(parameters: UseFieldHiddenInputPropsParameters): UseFieldHiddenInputPropsReturnValue; interface UseFieldHiddenInputPropsParameters { manager: PickerAnyManager; stateResponse: UseFieldStateReturnValue; } interface UseFieldHiddenInputPropsReturnValue { value: string; onChange: React.ChangeEventHandler; } export {};