import type { Text } from '@codemirror/state'; import type { Tree } from '@lezer/common'; import type { NumberFormatParser } from '../../parser/getNumberParser.js'; import type { FilterFieldStatementNode } from '../../types/tree-nodes.js'; /** * Get the filter statement around the given cursor position. * @internal */ export declare function getFilterStatementForSuggestions(tree: Tree, cursorPosition: number, numberParser: NumberFormatParser, doc?: Text): FilterFieldStatementNode | undefined;