import { Staff } from './../staff/staff'; import { fabric } from 'fabric'; export declare class NotationCanvas { canvas: fabric.StaticCanvas; currentWidth: number; constructor(elem: HTMLCanvasElement); clear(): void; setDimensions(width: number, height: number): void; getWidth(): number; renderSystem(staff: Staff): void; }