import type { TransformPage } from 'houdini'; import type { SourceMapInput } from 'rollup'; import type { Framework } from '../types.js'; export default function apply_transforms(framework: Framework, page: TransformPage): Promise<{ code: string; map?: SourceMapInput; }>; export declare function offset_script_sourcemap(rawMap: { mappings: string; names?: string[]; }, linesBefore: number, filepath: string, content: string): SourceMapInput;