export type Replacement = { id: string; path: string; hint: string; }; export declare class ReplacementsParser { private static TXN_HINT_SEPARATOR; private static ID_SEPARATOR; private static LIST_SEPARATOR; static parse(str: string | undefined): { id: string; path: string; hint: string; }[]; static toString(replacements: Replacement[]): string; }