export interface ShowOptions { file: string; symbol?: string; startLine?: number; endLine?: number; mode?: "full" | "methods" | "init"; contextLines?: number; } export interface ShowResult { file: string; symbol?: string; mode?: string; startLine: number; endLine: number; content: string; totalLines: number; } export declare function showFileRange(options: ShowOptions): ShowResult; export declare function showClassDefinition(options: ShowOptions): Promise;