import { JSExpression, JSONValue } from '@vtj/core';
import { SymbolTable } from './symbolTable';
/**
 * 解析 refs 声明：
 * { count: 0, list: { type: 'JSExpression', value: 'this.props.items' } }
 *  → ['const count = ref(0);', 'const list = ref(props.items);']
 */
export declare function parseRefs(refs: Record<string, JSONValue | JSExpression> | undefined, symbols: SymbolTable): string[];
