export class Matrix {
    leftIndicator: number;
    topIndicator: number;
    order: string;
    draw(context: any): void;
    orders: {
        id: any;
        pre_count: any;
        post_count: any;
    };
    getLegends(context: any): {
        id: string;
        colorScale: any;
        title: any;
    }[];
    getName(): string;
    setOrder(context: any, value: any): void;
    hasTooltip(): boolean;
    hasToggle(): boolean;
    hasSelect(): boolean;
}
