import { BlockFrostAPI } from '..';
import * as Account from '../types/account';
export declare const deriveAddress: (publicKey: string, addressIndex: number, type: 0 | 1) => {
    address: string;
    path: string;
};
export declare function getAccount(this: BlockFrostAPI, publicKey: string, type: Account.Type): Promise<Account.Result[]>;
