import type { VptOptions } from '../../../options.ts'; import { type AstTransformResult } from '../../utils/transform.ts'; /** Specializes only the reserved expressions in VPT's physical H5 App; Vite lowers its TypeScript once afterward. */ export declare function transformH5App({ code, id, options, projectRoot, sourcemap }: { code: string; id: string; options: VptOptions; projectRoot: string; sourcemap?: boolean; }): AstTransformResult;