import MatrixModel from '../../coord/matrix/MatrixModel.js';
import ComponentView from '../../view/Component.js';
declare class MatrixView extends ComponentView {
    static type: string;
    type: string;
    render(matrixModel: MatrixModel): void;
}
export default MatrixView;
