import React from 'react'; import { Pixels } from '@musicenviro/base'; export interface ISimpleCell { row: number; column: number; color: string; } export interface ICellGridPreviewProps { width?: Pixels; height?: Pixels; numRows?: number; numColumns?: number; cells?: Array; } export declare const CellGridPreview: React.FunctionComponent; //# sourceMappingURL=CellGridPreview.d.ts.map