import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; import { UmbContextBase } from '../../../../../libs/class-api/index.js'; /** * A entity context for the isTrashed state. * @class UmbIsTrashedEntityContext * @augments {UmbContextBase} * @implements {UmbIsTrashedEntityContext} */ export declare class UmbIsTrashedEntityContext extends UmbContextBase { #private; isTrashed: import("rxjs").Observable; constructor(host: UmbControllerHost); /** * Gets the isTrashed state * @returns {*} * @memberof UmbIsTrashedContext */ getIsTrashed(): boolean; /** * Sets the isTrashed state * @param {boolean} isTrashed * @memberof UmbIsTrashedContext */ setIsTrashed(isTrashed: boolean): void; }