import React from "react"; import { Param } from "./slice"; export interface LabelProps { label?: string; type?: string; required?: boolean; } export interface ParamProps { param: Param; } /** * Extracts enum values from a schema, including when wrapped in allOf. * This handles cases where an enum is referenced via allOf for composition. */ export declare function getSchemaEnum(schema: any): any[] | undefined; declare function ParamOptions(): React.JSX.Element; export default ParamOptions;