import { Note } from "./Note";
export declare class PianoData {
    static readonly WHITE_KEY_RATIO = 6.4;
    static readonly BLACK_KEY_RATIO = 6.6;
    static readonly WHITE_BLACK_WIDTH_RATIO = 1.7;
    static readonly NOTE_LIST: Note[];
    static readonly BLACK_BASE_NOTE_LIST: Note[];
}
