import { Dispatch, SetStateAction } from "preact/compat"; import { State } from "@teamhanko/hanko-frontend-sdk"; type CredentialType = "passkey" | "security-key"; interface Props { checkedItemID?: string; setCheckedItemID: Dispatch>; credentialType: CredentialType; flowState: State<"profile_init">; onState(state: State): Promise; } declare const AddWebauthnCredentialDropdown: ({ checkedItemID, setCheckedItemID, credentialType, flowState, onState, }: Props) => import("preact/compat").JSX.Element; export default AddWebauthnCredentialDropdown;