import type { BasicQueryData } from '../../base-query-format';
import { type AbsintQuery, type AbsintQueryResult, type AbsintQueryType } from './absint-query-format';
/**
 * Executes the given abstract interpretation queries using the provided analyzer.
 */
export declare function executeAbsintQuery<AbsintType extends AbsintQueryType>({ analyzer }: BasicQueryData, queries: readonly AbsintQuery<AbsintType>[]): Promise<AbsintQueryResult<AbsintType>>;
