import { BlockInject } from '@vtj/core';
import { SymbolTable } from './symbolTable';
/**
 * 解析 inject 为 Composition 顶层声明：
 * { name: 'theme', from: 'theme', default: 'light' }
 *  → const theme = inject('theme', 'light');
 */
export declare function parseInject(injects: BlockInject[] | undefined, symbols: SymbolTable): string[];
