import { ExpectationValue } from "../Values"; import { ActionBuilder } from "./Action"; export declare function setState(name: string, value: unknown): SetStateAction; export declare class SetStateAction implements ActionBuilder { private _state; constructor(name: string, value: unknown); execute(ctx: ExpectationValue): Promise; }