import { VerifyControlResponse } from './VerifyControlResponse.js';
import { Command } from '../../enums/Command.js';

/**
 * Represents the response for cancelling a verification request.
 *
 * @deprecated Please use VerifyControlResponse instead
 */
type VerifyCancelResponse = VerifyControlResponse & {
    /**
     * The command type for the response, which is "CANCEL".
     */
    command: Command.CANCEL;
};

export type { VerifyCancelResponse };
