export interface LSPPosition { line: number; character: number; } export interface HumanPosition { line: number; character: number; } export interface LSPRange { start: LSPPosition; end: LSPPosition; } export interface HumanRange { start: HumanPosition; end: HumanPosition; } export declare function humanToLSP(content: string, pos: HumanPosition): LSPPosition; export declare function lspToHuman(content: string, pos: LSPPosition): HumanPosition; export declare function humanToLSPRange(content: string, range: HumanRange): LSPRange; export declare function lspToHumanRange(content: string, range: LSPRange): HumanRange; export declare function splitLines(content: string): string[]; //# sourceMappingURL=position.d.ts.map