import { FunctionComponent } from 'react'; import { Pixels } from '@musicenviro/base'; import { IRhythmTree } from '../../musical-data/trees'; import { IBlock } from './types'; interface IRhythmTreeEditorProps { initialTree: IRhythmTree; backgroundColor?: string; width?: Pixels; height?: Pixels; onChange?: (newTree: IRhythmTree) => void; } export declare const RhythmTreeEditor: FunctionComponent; export declare function getColor(block: IBlock, selected: boolean): string; export {}; //# sourceMappingURL=RhythmTreeEditor.d.ts.map