export interface IMatrix { blocks: number[]; sizeX: number; sizeY: number; } export declare const initialMatrix: IMatrix;