import { Staff } from './../../staff/staff'; import { fabric } from 'fabric'; declare type arguments = { staff: Staff; cursorPosition: number; }; declare type returnValue = { halfBarlinePath: fabric.Path; }; export declare const drawHalfBarline: (options: arguments) => returnValue; export {};