import type { Token, LokiQuery, Situation } from './types'; export declare function locate(offset: number, tokens: Token[]): Situation; export declare function parseAndLocate(input: string, offset: number): { ast: LokiQuery; tokens: Token[]; situation: Situation; };