import { FunctionComponent, PropsWithChildren } from 'react'; import { OneOfSchemas } from '../../../utils/get-oneof-schema-list'; interface OneOfComponentProps extends PropsWithChildren { name: string; oneOfSchemas: OneOfSchemas[]; selectedSchemaName?: string; onSchemaChanged: (name: string | undefined) => void; } export declare const OneOfSchemaList: FunctionComponent; export {};