import { Accidental } from './../../symbol/attached-object'; import { Staff } from './../../staff/staff'; import { fabric } from 'fabric'; declare type arguments = { staff: Staff; accidental: Accidental; cursorPosition: number; notePitch: string; /** fabric.Path of the already drawn note */ notePath: fabric.Path; }; declare type returnValue = { accidentalPath: fabric.Path; extraCursorMovement: number; }; export declare const drawAccidental: (options: arguments) => returnValue; export {};