UNPKG

@near-wallet-selector/modal-ui

Version:
11 lines (10 loc) 515 B
import React from "react"; import type { HardwareRoutes, HardwareWalletAccountState } from "./DerivationPath"; interface FormProps { accounts: Array<HardwareWalletAccountState>; onSelectedChanged: (index: number, selected: boolean) => void; onSubmit: (accounts: Array<HardwareWalletAccountState>, e: React.FormEvent<HTMLFormElement>) => void; onChangeRoute: (route: HardwareRoutes) => void; } declare const HardwareWalletAccountsForm: React.FC<FormProps>; export default HardwareWalletAccountsForm;