import { type DurableSessionState } from "#execution/durable-session-store.js";
import { type TaskAuthorizationEventDelivery } from "#tasks/types.js";
/** Accepts authorization events from the workflow task itself or an agent it owns. */
export declare function acceptTaskAuthorizationEventStep(input: {
    readonly delivery: TaskAuthorizationEventDelivery;
    readonly sessionState: DurableSessionState;
}): Promise<boolean>;
