import { FirmaConfig } from "./FirmaConfig";
import { FirmaBankService } from "./FirmaBankService";
import { FirmaFeeGrantService } from "./FirmaFeeGrantService";
import { NftService } from "./FirmaNftService";
import { ContractService } from "./FirmaContractService";
import { IpfsService } from "./FirmaIpfsService";
import { FirmaWalletService } from "./FirmaWalletService";
export declare class FirmaSDK {
    Config: FirmaConfig;
    Wallet: FirmaWalletService;
    Bank: FirmaBankService;
    FeeGrant: FirmaFeeGrantService;
    Nft: NftService;
    Contract: ContractService;
    Ipfs: IpfsService;
    constructor(Config: FirmaConfig, Wallet?: FirmaWalletService, Bank?: FirmaBankService, FeeGrant?: FirmaFeeGrantService, Nft?: NftService, Contract?: ContractService, Ipfs?: IpfsService);
}
