import { GraphOptions } from '..' export declare const negation = 'NOT ' export type ScanFilter = ReturnType export type ScanFilters = ReturnType export declare function get_filters( options: GraphOptions ): { node_filters: { is_negated: boolean filter: string }[] edge_filters: { from: { is_negated: boolean filter: string } to: { is_negated: boolean filter: string } }[] } declare function get_filter( filter: string ): { is_negated: boolean filter: string } export declare function isFilteredByCond(filter: ScanFilter, check: string, options: GraphOptions): boolean export {}