import type { ReactElement } from "react";
import type { InputProps } from "./Input.js";
export interface FormInputProps extends InputProps {
}
/** Show a `SchemaInput` for each property in the current form. */
export declare function FormInput({ name, ...props }: FormInputProps): ReactElement;
/** Show a `SchemaInput` for a named property in the current form. */
export declare function FormInputs(): ReactElement;
