import { SymbolId } from '../model/SymbolId'; import { TextRange } from '../model/TextRange'; import { NodeKind } from './NodeKind'; export declare class LocalDef extends NodeKind { range: TextRange; symbolId?: SymbolId | null; constructor(range: TextRange, symbolId?: SymbolId | null); }