import { VerifySearchErrorResponse } from './Response/VerifySearchErrorResponse.js'; import '../enums/SearchStatus.js'; /** * Represents an error response for a Verify search operation. */ type VerifySearchError = VerifySearchErrorResponse & { /** * The unique identifier for the Verify request that resulted in an error. */ requestId: string; /** * A descriptive error message providing more information about the error. */ errorText: string; }; export type { VerifySearchError };