export type PanzoomTransform = { x: number; y: number; zoom: number; }; export type PanzoomTransformCallback = (t: PanzoomTransform) => any; /** * Gets the transformation matrix for a {@linkcode PanzoomTransform} */ export declare function getMatrix(t: PanzoomTransform): string; export declare function parseMatrix(s: string): PanzoomTransform; //# sourceMappingURL=transform.d.ts.map