export interface ScreenMembersOnBruteForceProtectionUnblockFailure extends ScreenMembers { /** * Screen-specific data containing the error type from the failed unblock attempt. * @type {{ errorType?: string; } | null} */ data: { /** * The type of error that caused the unblock attempt to fail. * @type {string} */ errorType?: string; } | null;}