@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
11 lines (10 loc) • 469 B
TypeScript
import React from 'react';
import { WalletDescriptorWithCAMainStatus } from '../../../../../common/types';
type TDropdownCAListReceiverProps = {
values: WalletDescriptorWithCAMainStatus[];
selected?: WalletDescriptorWithCAMainStatus;
setter: React.Dispatch<React.SetStateAction<WalletDescriptorWithCAMainStatus>>;
maxLength?: number;
};
export declare const DropdownCAListReceiver: (props: TDropdownCAListReceiverProps) => React.JSX.Element;
export {};