import { Predicate } from './Predicate.mjs'; /** * * Predicate that evaluates to true when any sub-predicate evaluates to true (logical OR). * / */ export declare class OrPredicate { /** * * The list of predicates where at least one must be satisfied. */ predicates: Array; readonly $ktClass: 'com.icure.cardinal.sdk.model.filter.predicate.OrPredicate'; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): OrPredicate; }