import type * as Rulebricks from "../index.js"; /** * List of pending evaluations for a context instance. */ export interface ContextInstancePendingResponse { /** Pending rule and flow evaluations. */ pending?: Rulebricks.ContextInstancePendingEvaluation[] | undefined; }