export interface ISylvester { version: string; precision: number; } export interface IMatrix { elements: Array>; modulus: boolean; } export declare function Matrix(): void; export declare namespace Matrix { var create: (elements: any) => any; var I: (n: any) => any; } export declare let PureCSSMatrix: (trans: any) => void;