import { QueryContext } from './types'; /** * Takes query and position and returns the context of the given position in the query * * @param {string} input sql query * @param {number} position to evaluate * * @returns {QueryContext} the evaluated context */ export declare const evaluateContextFromPosition: (input: string, position: number) => QueryContext;