import { BaseOutputInterface } from './base-output.interface';
export interface CalculateCohortMatrixOutputModelInterface extends BaseOutputInterface {
    matrix: number[][];
}
