import { Staff } from './../../staff/staff'; import { fabric } from 'fabric'; declare type drawLyricsOptions = { staff: Staff; cursorPosition: number; notePitch: string; text: string; }; declare type returnValue = { textObject: fabric.Object; width: number; }; export declare const drawLyrics: (options: drawLyricsOptions) => returnValue; export {};