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