import type { Situation } from './types'; import { parse } from './parser'; export declare function locate(input: string, offset: number): Situation; export declare function parseAndLocate(input: string, offset: number): { ast: ReturnType; situation: Situation; };