import type { InternalParsedTextState, InternalPropertyDefinition } from "../TokenFilter.types.js"; /** * Parse user input text to extract property, operator, and value components. * Handles partial input (e.g., user typing "Status !" to complete the operator). */ declare function parseQueryText(filteringText: string, filteringProperties: InternalPropertyDefinition[]): InternalParsedTextState; export { parseQueryText };