import React from 'react'; import { JsonSchema, Layout, UISchemaElement } from '@json-forms/core'; interface CombinatorPropertiesProps { schema: JsonSchema; combinatorKeyword: 'oneOf' | 'anyOf'; path: string; } export declare const isLayout: (uischema: UISchemaElement) => uischema is Layout; export declare class CombinatorProperties extends React.Component { render(): JSX.Element; } export default CombinatorProperties;