import { ValueFilter } from "../abstractions/ValueFilter.js"; declare class EqFilterImpl implements ValueFilter.Interface { readonly operation = "eq"; is(operation: string): boolean; canUse(): boolean; matches({ value, compareValue }: ValueFilter.MatchesParams): ValueFilter.Result; } export declare const EqFilter: typeof EqFilterImpl & { __abstraction: import("@webiny/di").Abstraction>; }; export {};