import type { ShapeConfig } from '../Shape.ts'; import { Shape } from '../Shape.ts'; import type { GetSet } from '../types.ts'; import type { Context } from '../Context.ts'; export interface RingConfig extends ShapeConfig { innerRadius: number; outerRadius: number; } export declare class Ring extends Shape { _sceneFunc(context: Context): void; getWidth(): number; getHeight(): number; setWidth(width: number): void; setHeight(height: number): void; outerRadius: GetSet; innerRadius: GetSet; }