import type ts from 'typescript'; export type Replacement = { start: number; end: number; value: string; }; export declare const updateSourceMap: ({ filepath, replacements, sourceFile, }: { filepath: string; replacements: Replacement[]; sourceFile: ts.SourceFile; }) => Promise;