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