import { ShapeOptions } from '../models/painter'; declare abstract class Shape { ctx: CanvasRenderingContext2D; config: ShapeOptions; constructor(ctx: any, config: any); abstract draw(): void; } export default Shape;