import { TimeUnit } from 'ngx-bootstrap/chronos'; export declare type CreateMatrixCb = (date: Date) => T; export interface MatrixOptions { height: number; width: number; initialDate: Date; shift: TimeUnit; } export declare function createMatrix(options: MatrixOptions, fn: CreateMatrixCb): T[][];