declare module '@vue/compiler-dom' {
import type { RootNode } from '@vue/compiler-core'
export function parse(
template: string,
options?: {
sourceMap?: boolean
filename?: string
parseMode?: 'html' | 'native'
isNativeTag?: (tag: string) => boolean
}
): RootNode
}