export declare function getWordPattern(): RegExp; export interface IWordAtPosition { /** * The word. */ readonly word: string; /** * The column where the word starts. */ readonly startColumn: number; /** * The column where the word ends. */ readonly endColumn: number; } export declare function getWordAtText(column: number, text: string, textOffset?: number): IWordAtPosition | null; //# sourceMappingURL=word.d.ts.map