export type ShellQuotingHit = { offset: number; excerpt: string; }; export declare function lineNumberAt(source: string, offset: number): number; /** Hits in `text` with offsets relative to `text` itself, not any enclosing document. */ export declare function ghApiShellQuotingHits(text: string): ShellQuotingHit[];