import { FieldValues, UseFormProps } from "react-hook-form"; import { OnChangeField } from "./auxiliar"; import { CreatePropsDefinition } from "./CreatePropsDefinition"; export type UseFormParameters = UseFormProps & { onChangeField?: OnChangeField; initialValues?: TFieldValues; debounceTime?: number; enableDebounce?: boolean; enableDebounceOnSubmit?: boolean; }; //# sourceMappingURL=UseFormParameters.d.ts.map