import { ProviderType } from "../enum/ProviderType";
export interface WalletSelectorInterface {
    selectType(dappName: string): Promise<ProviderType>;
}
