import { Operator } from './Operator.mjs'; /** * * Predicate that evaluates a comparison between an entity property and a value using an operator. * / */ export declare class KeyValuePredicate { /** * * The property key to compare. */ key: string | undefined; /** * * The comparison operator. */ operator: Operator | undefined; /** * * The value to compare against. */ value: any | undefined; readonly $ktClass: 'com.icure.cardinal.sdk.model.filter.predicate.KeyValuePredicate'; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): KeyValuePredicate; }