UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

11 lines (10 loc) 465 B
import React from 'react'; import type { MeshExchangeType } from '~/consts/mesh'; import type { FunSelectOption } from '../FunSelect/FunSelect'; interface FunSelectBrokerageProps { onSelect: (value: MeshExchangeType) => void; options: FunSelectOption<MeshExchangeType>[]; selectedValue: FunSelectOption['value']; } export declare function FunSelectBrokerage({ onSelect, options, selectedValue, }: FunSelectBrokerageProps): React.JSX.Element; export {};