import React from "react"; import type { SchemaObject } from "docusaurus-plugin-openapi-docs/src/openapi/types"; interface FormBodyItemProps { schemaObject: SchemaObject; id: string; schema: SchemaObject; label?: string; required?: boolean; exampleValue?: SchemaObject["example"]; fieldEncoding?: string; } export default function FormBodyItem({ schemaObject, id, schema, label, required, exampleValue, fieldEncoding, }: FormBodyItemProps): React.JSX.Element; export {};