import { Fee } from '@tharsis/transactions'; import { Registry } from '../index'; export declare const ensureUpdatedConfig: (path: string) => Promise; export declare const getBaseConfig: (path: string) => Promise; /** * Provision a bond for record registration. */ export declare const provisionBondId: (registry: Registry, privateKey: string, fee: Fee) => Promise; export declare const getConfig: () => { chainId: string; privateKey: string; restEndpoint: string; gqlEndpoint: string; fee: { amount: string; denom: string; gas: string; }; };