import React from 'react'; import { INote, IRhythmTree } from '../../musical-data'; import { IRange, DiatonicStep, MidiPitch, Mode, Pixels } from '@musicenviro/base'; export interface IPianoRollProps { initialNotes?: INote[]; tree?: IRhythmTree; stepRange?: IRange; zeroPitch?: MidiPitch; mode?: Mode; width?: Pixels; height?: Pixels; padding?: Pixels; onChange?: (notes: INote[]) => void; } export declare const PianoRoll: React.FunctionComponent; //# sourceMappingURL=PianoRoll.d.ts.map