import { default as React } from 'react'; import { MIDINoteNumber, KeyboardConfig, PianoRollTheme } from '../types'; interface KeyboardProps { /** * Set of currently active notes (MIDI numbers) */ activeNotes: Set; /** * Keyboard configuration */ config: Required; /** * Theme configuration */ theme: Required; /** * Width of the keyboard container */ width?: number; } export declare const Keyboard: React.FC; export {}; //# sourceMappingURL=Keyboard.d.ts.map