import { CheckStatus } from '../enums/CheckStatus.mjs';

/**
 * Represents an error that occurred during the verification control process.
 */
type VerifyControlError = {
    /**
     * The status of the verification control.
     */
    status: CheckStatus;
    /**
     * The error message associated with the verification control error.
     */
    errorText: string;
};

export type { VerifyControlError };
