import type { BasicQueryData } from '../../base-query-format';
import type { DfShapeQuery, DfShapeQueryResult } from './df-shape-query-format';
/**
 * Executes the given data frame shape queries using the provided analyzer.
 */
export declare function executeDfShapeQuery({ analyzer }: BasicQueryData, queries: readonly DfShapeQuery[]): Promise<DfShapeQueryResult>;
