import { Control } from 'react-hook-form'; import { FieldList, FormWatchObject, GenericValue, TField } from '../../@types'; export interface FormWatcherProps { control: Control; watch: FieldList; onChange: (values: FormWatchObject) => void; } declare function FormWatcher({ control, watch, onChange }: FormWatcherProps): null; export default FormWatcher; //# sourceMappingURL=FormWatcher.d.ts.map