export interface ScreenMembersOnMfaWebAuthnChangeKeyNickname extends ScreenMembers { /** * Screen-specific data containing the current nickname of the WebAuthn key. * @type {{ nickname: string; } | null} */ data: { /** * The current nickname of the WebAuthn security key that the user is about to change. * This value should be displayed to the user for context. * @type {string} * @example "My YubiKey" * @example "Work Security Key" */ nickname: string; } | null;}