import { VerifySearchErrorResponse } from './Response/VerifySearchErrorResponse.mjs';
import '../enums/SearchStatus.mjs';

/**
 * 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 };
