/** * Simple condition parsing and matching for the `query()` method. */ import type { ParsedCondition } from './types.js'; /** Parse a condition string like "Age > 25" or "Name contains Ali". */ export declare function parseCondition(where: string): ParsedCondition; /** Test if a cell value matches a condition. Uses numeric comparison when both sides are numbers. */ export declare function matchCondition(cellVal: string, op: string, value: string): boolean; //# sourceMappingURL=query.d.ts.map