//@ts-ignore import React, { Component } from 'react'; //@ts-ignore import { PropertyEditorProps } from '@grapecity/core-ui'; import { AnnotationTypeName } from './../AnnotationTypes'; /// //@ts-ignore import { i18n } from 'i18next'; export type ParentIdEditorLocalization = { noneItem: { label: string; title: string; }; }; export type ParentIdEditorProps = PropertyEditorProps & ParentIdEditorLocalization & { /** * Annotation subtype constraint. * */ subtypeConstraint?: AnnotationTypeName; in17n: i18n; }; export declare class ParentIdEditor extends Component { //@ts-ignore //@ts-ignore render(): React.JSX.Element; }