/** * This file was auto-generated by Fern from our API Definition. */ import * as core from "./core"; import { Transact } from "./api/resources/transact/client/Client"; import { Wallet } from "./api/resources/wallet/client/Client"; export declare namespace SyndicateClient { interface Options { token: core.Supplier; } interface RequestOptions { timeoutInSeconds?: number; maxRetries?: number; } } export declare class SyndicateClient { protected readonly _options: SyndicateClient.Options; constructor(_options: SyndicateClient.Options); protected _transact: Transact | undefined; get transact(): Transact; protected _wallet: Wallet | undefined; get wallet(): Wallet; }