import { StandardSchemaV1 } from "../standard-schema/types.mjs"; import { FormInterface, FormProps } from "../types.mjs"; import React from "react"; //#region ../react-form/src/components/NativeForm.d.ts /** * Generic call signature preserving schema inference and `ref` support. */ type NativeFormComponent = (props: FormProps & { ref?: React.Ref; }) => React.ReactElement | null; /** * React Native form. Renders no host element by default (just a Fragment) so it * does not depend on `react-native` being installed; pass a `component` prop * (e.g. `View`) to wrap children with a host view. * * Same engine, context, hooks, validation, and value collection as the web * `Form`. Submission is programmatic only — call `form.submit()`. */ declare const NativeForm: NativeFormComponent; //#endregion export { NativeForm }; //# sourceMappingURL=NativeForm.d.mts.map