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