UNPKG

@funkit/connect

Version:

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

10 lines (9 loc) 389 B
import React from 'react'; import { type BluvoExchangeType } from '~/consts/bluvo'; interface FunSelectBrokerageProps { isDisabled?: boolean; onSelect: (value: BluvoExchangeType) => void; selectedValue: BluvoExchangeType | undefined; } export declare function FunSelectBrokerage({ isDisabled, onSelect, selectedValue, }: FunSelectBrokerageProps): React.JSX.Element; export {};