import { TServiceParams } from "@digital-alchemy/core"; /** * Enumerates the types of operations available for data filtering. */ export declare enum FILTER_OPERATIONS { elem = "elem", regex = "regex", in = "in", nin = "nin", lt = "lt", lte = "lte", gt = "gt", gte = "gte", exists = "exists", empty = "empty", ne = "ne", eq = "eq" } export declare function ComparisonTools({ terminal }: TServiceParams): { pickOperation(): Promise; };