from typing import TYPE_CHECKING from ...components.common.webauthn import ConfirmInfo if TYPE_CHECKING: from trezor.wire import GenericContext Pageable = object async def confirm_webauthn( ctx: GenericContext | None, info: ConfirmInfo, pageable: Pageable | None = None, ) -> bool: raise NotImplementedError async def confirm_webauthn_reset() -> bool: raise NotImplementedError