/// <reference path="../../vendor/react/react.d.ts" />
//@ts-ignore
import React, { Component } from 'react';
//@ts-ignore
import { PropertyEditorProps } from '@grapecity/core-ui';
import { AnnotationTypeName } from './../AnnotationTypes';/// <reference path="../../vendor/i18next.d.ts" />
//@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<ParentIdEditorProps, any> {
    render(): React.JSX.Element;
}
