/**
 * Enum representing commands for controlling Verify requests.
 */
declare enum Command {
    /**
     * Command to request cancellation of the verification process.
     */
    CANCEL = "cancel",
    /**
     * Command to trigger the next verification event (if any).
     */
    TRIGGER_NEXT_EVENT = "trigger_next_event"
}

export { Command };
