import React from 'react';
import type { ReactPropsBase } from 'jamis-core';
import type { SchemaEditorItemCommonProps } from './types';
export interface SchemaEditorItemProps extends SchemaEditorItemCommonProps, ReactPropsBase {
}
export declare class SchemaEditorItem extends React.Component<SchemaEditorItemProps> {
    render(): JSX.Element;
}
