import { ContextState, PropertyKey } from './ContextState'; import { Context } from '../Context'; export declare class SetPropertyState implements ContextState { private _property; private _callCount; private _arguments; get arguments(): any[]; get property(): PropertyKey; get callCount(): number; constructor(_property: PropertyKey, ...args: any[]); apply(context: Context): undefined; set(context: Context, property: PropertyKey, value: any): void; get(context: Context, property: PropertyKey): undefined; }