import { Api } from '../typings/api'; import { Http } from '@turajs/http'; export declare type Ledger = Api; export interface LedgerSettings { nodeHost: string; reliableNodeHosts?: string[]; httpClient?: Http; httpOptions?: any; } export declare class LedgerClientFactory { static createClient(settings: LedgerSettings): Ledger; }