import { ObjectAbstract } from '../../../common/object-abstract';
import { ResultType, Polygon2DType, Polygon2DLoopType, Polygon2DEntityAtomType, BasicInfoAtomType } from '../../../common/data-type';
import { ObjectCommon } from '../../../common/object-common';
/**
 * @public
 * @class Polygon2D
 * @extends ObjectCommon
 * @implements ObjectAbstract
 */
declare class Polygon2D extends ObjectCommon implements ObjectAbstract {
    className: string;
    private Polygon2DEntityAtom;
    /**
     * @constructor
     * @param {Polygon2DType} opt (optional)
     */
    constructor(opt?: Polygon2DType);
    get polygon(): Polygon2DLoopType;
    set polygon(polygon: Polygon2DLoopType);
    GetPolygon(): Promise<ResultType>;
    SetPolygon(polygon: Polygon2DLoopType): Promise<ResultType>;
    /**
     * @public
     * @function GetScheme
     * @returns {{Polygon2DEntityAtom: Polygon2DEntityAtomType}}
     */
    GetScheme(): {
        Polygon2DEntityAtom: Polygon2DEntityAtomType;
    };
    /**
     * @public
     * @function GetData
     * @returns {Polygon2DType}
     */
    GetData(): Polygon2DType;
    /**
     * @public
     * @function SetData
     * @param {Polygon2DType} opt
     * @returns {void}
     */
    SetData(opt: Polygon2DType): void;
    /**
     * @public
     * @function generateAtomData
     * @param {Polygon2DType} opt
     * @returns {{Polygon2DEntityAtom?: Partial<Polygon2DEntityAtomType>, BasicInfoAtom?: Partial<BasicInfoAtomType>}}
     */
    generateAtomData(opt: Polygon2DType): {
        Polygon2DEntityAtom?: Partial<Polygon2DEntityAtomType>;
        BasicInfoAtom?: Partial<BasicInfoAtomType>;
    };
    /**
     * @public
     * @function GetValidateRules
     * @returns {Polygon2DType}
     */
    GetValidateRules(): Polygon2DType;
    /**
     * @public
     * @function Validate
     * @param {Polygon2DType} opt
     * @returns {void}
     */
    Validate(opt: Polygon2DType): void;
}
export default Polygon2D;
