import { JSExpression, JSFunction } from '@vtj/core';
import { SymbolTable } from './symbolTable';
/**
 * 解析 computed 为 Composition 顶层声明：
 * { total: { value: '() => this.count * 2' } }
 *  → const total = computed(() => count.value * 2);
 */
export declare function parseComputed(computed: Record<string, JSFunction | JSExpression> | undefined, symbols: SymbolTable): string[];
