import type { KernelState, TokenType, EntropyScore } from '../types.js'; import { DSQLTokenQuery } from './tokens.js'; import { DSQLRuleQuery } from './rules.js'; import { DSQLComponentQuery } from './components.js'; /** * Executes DSQL queries against a KernelState snapshot. * Runs in-process inside the kernel; no serialisation overhead. */ export declare class DSQLExecutor { #private; constructor(state: KernelState); tokens(type?: TokenType): DSQLTokenQuery; rules(category?: string): DSQLRuleQuery; components(): DSQLComponentQuery; entropy(): EntropyScore; } //# sourceMappingURL=executor.d.ts.map