export interface INetwork {
    nodeUrl: string;
    chainId?: string;
}
export interface IOptions {
    scope?: string[];
}
export interface IWalletLinkConnectorOptions {
    infuraId: string;
    appName: string;
    appLogoUrl: string;
    config?: IOptions;
}
declare const ConnectToWalletLink: (WalletLink: any, opts: IWalletLinkConnectorOptions) => Promise<unknown>;
export default ConnectToWalletLink;
//# sourceMappingURL=walletlink.d.ts.map