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