import { Predicate } from './Predicate.mjs'; /** * * Predicate that negates another predicate (logical NOT). * / */ export declare class NotPredicate { /** * * The predicate to negate. */ predicate: Predicate; readonly $ktClass: 'com.icure.cardinal.sdk.model.filter.predicate.NotPredicate'; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): NotPredicate; }