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

/**
 * Represents an error that occurred during the verification check process.
 */
type VerifyCheckError = VerifyCheckErrorResponse & {
    /**
     * The unique identifier of the request.
     */
    requestId: string;
    /**
     * The unique identifier of the error.
     */
    errorId: string;
};

export type { VerifyCheckError };
