import { PropsWithChildren, ReactElement, ReactNode } from 'react'; import type { SchemaItem } from '../../types'; interface OneOfProps { key?: string; root: SchemaItem; element: Array; } declare function OneOf(props: PropsWithChildren): ReactElement; export default OneOf;