import type { PathCommand } from '../../types'; import type { ParsedPathStyleProps, DisplayObject } from '../../display-objects'; import type { IElement } from '../../dom'; export declare function parsePath(path: string, object: DisplayObject): ParsedPathStyleProps['path']; export declare function mergePaths(left: ParsedPathStyleProps['path'], right: ParsedPathStyleProps['path'], object: IElement): [PathCommand[], PathCommand[], (b: PathCommand[]) => PathCommand[]];