/// <reference path="../../vendor/react/react.d.ts" />
//@ts-ignore
import React, { Component } from 'react';
//@ts-ignore
import { PropertyEditorProps } from '@grapecity/core-ui';
export type CalloutLineEditorLocalization = {
    lineTypes: {
        none: string;
        noneTitle: string;
        simple: string;
        simpleTitle: string;
        corner: string;
        cornerTitle: string;
    };
};
export type CalloutLineEditorProps = PropertyEditorProps & CalloutLineEditorLocalization;
export declare class CalloutLineEditor extends Component<CalloutLineEditorProps, any> {
    render(): React.JSX.Element;
}
