import { TransformResult } from 'wite'; import { R as RawSourceMap } from './types-83c4f67b.js'; interface InstallSourceMapSupportOptions { getSourceMap: (source: string) => RawSourceMap | null | undefined; } declare function withInlineSourcemap(result: TransformResult): Promise; declare function extractSourceMap(code: string): RawSourceMap | null; declare function installSourcemapsSupport(options: InstallSourceMapSupportOptions): void; export { extractSourceMap, installSourcemapsSupport, withInlineSourcemap };