import { StandardSchemaV1 } from "../standard-schema/types.mjs"; import { FormInterface, FormProps } from "../types.mjs"; import React from "react"; //#region ../react-form/src/components/Form.d.ts /** * Generic call signature preserving schema inference and `ref` support. */ type FormComponent = (props: FormProps & { ref?: React.Ref; }) => React.ReactElement | null; /** * Web form. Renders an HTML `
` element by default, built over the * React-free {@link FormEngine}. The engine instance is exposed via `ref`. */ declare const Form: FormComponent; //#endregion export { Form }; //# sourceMappingURL=Form.d.mts.map