import { GetTransactionPayload, TransferPayload } from '../utils/types';
declare const _default: {
    createWallet: (network: string, derivationPath?: string | undefined) => import("../utils/types").IResponse;
    generateWalletFromMnemonic: (network: string, mnemonic: string, derivationPath?: string | undefined) => import("../utils/types").IResponse;
    getAddressFromPrivateKey: (privateKey: string, network: string) => import("../utils/types").IResponse;
    getBalance: (address: string, network: string) => Promise<import("../utils/types").IResponse>;
    transfer: (args: TransferPayload) => Promise<import("../utils/types").IResponse>;
    getTransaction: ({ hash, network }: GetTransactionPayload) => Promise<import("../utils/types").IResponse>;
};
export default _default;
