import type { Keymap, SpecialKeymap } from './types/Keymap'; /** * The map of each key to its corresponding note for * the a single-row layout. */ export declare const keymapSingle: Keymap; /** * The map of each keyboard code to its corresponding * piano note for a two-row layout. */ export declare const keymapDouble: Keymap; /** * Maps Z and X to octave up and down, respectively, and * maps numbers 1-9 and 0 to velocity 1-127. */ export declare const specialKeyMap: SpecialKeymap;