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