import type { IPath } from '../typings/common'; /** * 字符串化路径 */ export declare function stringifyPath(path: IPath): string; /** * 将 string 或 number 类型的样式值标准化为 string 类型样式值 * @param value 样式值 */ export declare function normalizeStyleValue(value: string | number): string;