import * as React from 'react'; import { UseFormReturn } from 'react-hook-form'; import { GridFormField } from '../types'; export type GridFormInputGroupProps = { error?: string; field: GridFormField; isDisabled?: boolean; isFirstError?: boolean; isSoloField?: boolean; register: UseFormReturn['register']; required?: boolean; setValue: UseFormReturn['setValue']; }; export declare const GridFormInputGroup: React.FC;