import { VerifyCheckErrorResponse } from './Response/VerifyCheckErrorResponse.js'; import '../enums/CheckStatus.js'; /** * 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 };