import { Staff } from './../../staff/staff'; import { fabric } from 'fabric'; declare type arguments = { staff: Staff; cursorPosition: number; notePitch: string; }; declare type returnValue = { accentPath: fabric.Path; extraCursorMovement: number; }; export declare const drawAccent: (options: arguments) => returnValue; export {};