import type { ValueFilter } from "./ValueFilter.js"; export interface IValueFilterRegistry { get(operation: string): ValueFilter.Interface | undefined; getAll(): ValueFilter.Interface[]; } export declare const ValueFilterRegistry: import("@webiny/di").Abstraction; export declare namespace ValueFilterRegistry { type Interface = IValueFilterRegistry; type Filter = ValueFilter.Interface; }