export type Value = any; export interface Matcher { key: string; operator: string; comparison: string; field: string; value: Value | Value[]; text: string | string[]; valueTo?: Value | null; textTo?: string | null; hasError?: boolean; }