import { WalletService } from './walletService';
export default class EnsService {
    private _walletService;
    constructor(_walletService: WalletService);
    resolveName(name: string): Promise<string>;
}
