import React from "react"; import { Param } from "@theme/ApiExplorer/ParamOptions/slice"; export interface ParamProps { param: Param; label?: string; type?: string; required?: boolean; } export default function ParamTextFormItem({ param, label, type, required, }: ParamProps): React.JSX.Element;