import { Staff } from '../../staff/staff'; import { fabric } from 'fabric'; declare type arguments = { staff: Staff; cursorPosition: number; notePitch: string; /** fabric.Path of the already drawn note */ notePath: fabric.Path; }; declare type returnValue = { leftBracketPath: fabric.Path; rightBracketPath: fabric.Path; extraCursorMovement: number; }; export declare const drawBrackets: (options: arguments) => returnValue; export {};