export declare const PATH_SCALE = 100; export declare const staffLinePath = "m 0,0 h 100"; export declare const extraLinePath = "m -25,0 h 175"; export declare const barPath = "m 0,-200 v 400"; export declare const stemPath = "m 0,0 v 100 h 15 v -100 z"; export declare const singleFlagPath = "M0,0 h 12 c 7,100 175,156 62,314 79,-177 -49,\n-193 -61,-200 l -13,-5 z"; export declare const multiFlagPath = "m 0,0 h 10 c 6,72 173,64 84,227 44,-120 -44,\n-123 -94,-167 z"; export declare const tiePath = "M 0,25 C 10,46 30,67 50,67 69,67 90,47 100,25 94,\n65 73,89 50,89 26,89 5,63 0,25 Z"; export declare const dotPath = "M 5 -20 a 20 20 0 1 0 0.00001 0 z"; interface NotePathDetails { path: string; width: number; stemVSteps: number; stemAnchor: number; flags: number; } export declare const NOTE_PATHS: { [index: number]: NotePathDetails; }; export declare const REST_PATHS: { [index: number]: string; }; export declare const CLEF_PATHS: { [index: number]: string; }; export declare const ACCIDENTAL_PATHS: string[]; export {};