import { ExpectationValue } from "../Values"; export interface ActionBuilder { execute(ctx: ExpectationValue): Promise; } export declare type ActionFn = (ctx: ExpectationValue) => Promise; export declare type Action = ActionFn | ActionBuilder; export declare function executeAction(action: Action, ctx: ExpectationValue): Promise;