import { Note } from './note'; import { Accidental } from '../accidental'; export declare class AbsoluteNote extends Note { protected _octave: number; private _midi; get name(): string; constructor(_letter: string, _accidental: Accidental, _octave: number); get midi(): number; get octavePosition(): number; get absolute(): boolean; static getClosest(noteToFind: Note, close: AbsoluteNote): AbsoluteNote; static fromString(note: string): AbsoluteNote; }