import { Target, type CodePoint } from "../Target.js"; export declare class CSharpTarget extends Target { protected static readonly reservedWords: Set; protected static readonly targetCharValueEscape: Map; getTargetCharValueEscape(): Map; isATNSerializedAsInts(): boolean; protected get reservedWords(): Set; protected escapeWord(word: string): string; protected escapeChar(v: number): string; }