import { Client as SacClient } from 'sac-sdk'; import { PasskeyBase } from "./base"; import type { Server } from '@stellar/stellar-sdk/minimal/rpc'; export declare class SACClient extends PasskeyBase { rpc: Server; rpcUrl: string; networkPassphrase: string; constructor(options: { networkPassphrase: string; rpcUrl: string; }); getSACClient(SACContractId: string): SacClient; }