import { IBaseCoin } from '../baseCoin'; import { BitGoBase } from '../bitgoBase'; import { Enterprise } from './enterprise'; import { GetEnterpriseOptions, IEnterprises } from './iEnterprises'; export declare class Enterprises implements IEnterprises { private readonly bitgo; private readonly baseCoin; constructor(bitgo: BitGoBase, baseCoin: IBaseCoin); /** * List all enterprises available to the current user * @param params unused */ list(params?: Record): Promise; /** * Fetch an enterprise from BitGo * @param params */ get(params?: GetEnterpriseOptions): Promise; /** * Create a new enterprise * @param params */ create(params?: any): Promise; } //# sourceMappingURL=enterprises.d.ts.map