/// <reference types="node" />
import { Principal } from '@dfinity/principal';
import { AccountCredentials } from '../../interfaces/account';
export declare const getAccountId: (principal: Principal, subAccount?: number | undefined) => string;
export declare const createAccount: (entropy?: Buffer | undefined) => AccountCredentials;
export declare const createAccountFromMnemonic: (mnemonic: string, accountId: number) => AccountCredentials;
