import type { ComponentType, EntityId } from "../index.js"; export interface QueryConfig { with?: ComponentType[]; without?: ComponentType[]; oneOf?: ComponentType[]; } export type QueryResult = readonly EntityId[]; export type QueryFunction = () => QueryResult; export declare function validateQueryConfig(config: QueryConfig): void; //# sourceMappingURL=QueryConfig.d.ts.map