export type Criteria = { op: '<>' | '<' | '<=' | '>' | '>=' | '=' | 'wc'; value: string | number | boolean | RegExp; isArray?: boolean; match?: boolean; }; /** * Parse criteria, support comparison and wild card match. * @param {string|number} criteria * @return {{op: string, value: string|number|boolean|RegExp, match: boolean|undefined}} - The parsed criteria. */ export declare function parseCriteria(criteria: string | number): Criteria;