import type { Code, IRBlock, VueCodeInformation } from '../../types'; import type { TemplateCodegenContext } from './context'; export declare function generateInterpolation({ typescript, setupRefs }: { typescript: typeof import('typescript'); setupRefs: Set; }, ctx: TemplateCodegenContext, block: IRBlock, data: VueCodeInformation, code: string, start: number, prefix?: string, suffix?: string): Generator; export declare function shouldIdentifierSkipped(ctx: TemplateCodegenContext, text: string): boolean;