import type { Mapping } from '@volar/language-core';
import type { Code } from '../types';
export declare class VueEmbeddedCode {
    id: string;
    lang: string;
    content: Code[];
    parentCodeId?: string;
    linkedCodeMappings: Mapping[];
    embeddedCodes: VueEmbeddedCode[];
    constructor(id: string, lang: string, content: Code[]);
}
