import type { DisplayObject } from '@antv/g-lite'; import { Instanced } from '../drawcalls'; import { Batch } from './Batch'; /** * Use 2 meshes: * * SDF to draw fill & simple stroke if needed. * * InstancedPathDrawcall to draw stroke separately. */ export declare class CircleRenderer extends Batch { getDrawcallCtors(object: DisplayObject): (typeof Instanced)[]; /** * need an additional mesh to draw stroke: * 1. strokeOpacity < 1 * 2. lineDash used * 3. stroke is not 'none' */ private needDrawStrokeSeparately; } //# sourceMappingURL=Circle.d.ts.map