import React from "react"; import { FormAdapter } from "../../utils/index.js"; export declare const Form: React.ForwardRefExoticComponent | ((instance: HTMLFormElement | null) => void) | React.MutableRefObject | ((instance: HTMLFormElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.MutableRefObject | ((instance: HTMLFormElement | null) => void) | null | undefined; } & Omit, "children" | "onSubmit" | "initialPage"> & { children: React.ReactNode; onSubmit: (values: any) => void; initialPage?: number; } & { formAdapter: FormAdapter; Provider: React.FC<{ form: FormAdapter; children: React.ReactNode; }>; }, "ref"> & React.RefAttributes>;