import type { ControllerProps, FieldValues } from 'react-hook-form'; import type { Input2Props } from './Input2.js'; interface InputMapValueFunctions { mapOnChangeValue?: (value: string) => any; mapValue?: (value: any) => string; } interface Input2ControllerProps extends Omit, Pick, 'control' | 'name'>, InputMapValueFunctions { controllerProps?: Omit, 'control' | 'name' | 'render'>; noShadowBox?: boolean; enableErrorMessage?: boolean; } export declare function Input2Controller(props: Input2ControllerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Input2Controller.d.ts.map