import { ObjectAbstract } from '../../../common/object-abstract';
import { ResultType, PointType, CoordType, PointEntityAtomType, BasicInfoAtomType } from '../../../common/data-type';
import { ObjectCommon } from '../../../common/object-common';
/**
 * @public
 * @class Point
 * @extends ObjectCommon
 * @implements ObjectAbstract
 */
declare class Point extends ObjectCommon implements ObjectAbstract {
    className: string;
    private PointEntityAtom;
    /**
     * @constructor
     * @param {PointType} opt (optional)
     */
    constructor(opt?: PointType);
    get point(): CoordType;
    set point(point: CoordType);
    GetPoint(): Promise<ResultType>;
    SetPoint(point: CoordType): Promise<ResultType>;
    /**
     * @public
     * @function GetScheme
     * @returns {{PointEntityAtom: PointEntityAtomType}}
     */
    GetScheme(): {
        PointEntityAtom: PointEntityAtomType;
    };
    /**
     * @public
     * @function GetData
     * @returns {PointType}
     */
    GetData(): PointType;
    /**
     * @public
     * @function SetData
     * @param {PointType} opt
     * @returns {void}
     */
    SetData(opt: PointType): void;
    /**
     * @public
     * @function generateAtomData
     * @param {PointType} opt
     * @returns {{PointEntityAtom?: Partial<PointEntityAtomType>, BasicInfoAtom?: Partial<BasicInfoAtomType>}}
     */
    generateAtomData(opt: PointType): {
        PointEntityAtom?: Partial<PointEntityAtomType>;
        BasicInfoAtom?: Partial<BasicInfoAtomType>;
    };
    /**
     * @public
     * @function GetValidateRules
     * @returns {PointType}
     */
    GetValidateRules(): PointType;
    /**
     * @public
     * @function Validate
     * @param {PointType} opt
     * @returns {void}
     */
    Validate(opt: PointType): void;
}
export default Point;
