import Draw from "./Draw";
declare class DrawCircle extends Draw {
    _maxAnchorSize: number;
    _radius: number;
    constructor(style: any);
    /**
     *
     * @private
     */
    _mountedHook(): void;
    /**
     *
     * @private
     */
    _stopdHook(): void;
    /**
     *
     * @param position
     * @private
     */
    _onDrawAnchor(position: any): void;
}
export default DrawCircle;
