import { Node } from 'typescript'; import { TSQueryOptions, TSQuerySelectorNode } from './tsquery-types'; export declare function match(node: Node, selector: TSQuerySelectorNode, options?: TSQueryOptions): Array; export declare function findMatches(node: Node, selector: TSQuerySelectorNode, ancestry?: Array, options?: TSQueryOptions): boolean;