import { Address } from '@thorwallet/xchain-client/lib';
import { Network } from './client';
export declare const getAddress: ({ network, phrase, index, }: {
    network: Network;
    phrase: string;
    index: number;
}) => Promise<Address>;
