import type { TransformArray } from '@antv/g';
/**
* 从 transform 字符串中替换 translate 部分
*
* replace the translate part from the transform string
* @param x - x | x
* @param y - y | y
* @param z - z | z
* @param transform - transform 字符串 | transform string
* @returns 替换后的 transform 字符串,返回 null 表示无需替换 | the replaced transform string, return null means no need to replace
*/
export declare function replaceTranslateInTransform(x: number, y: number, z?: number, transform?: string | TransformArray): string | TransformArray | null;