import { SemanticQuery, Cube } from './types/index.js'; /** * Validate a query against a cubes map * Standalone function that can be used by both compiler and executor */ export declare function validateQueryAgainstCubes(cubes: Map, query: SemanticQuery): { isValid: boolean; errors: string[]; };