import type { AssembledTransaction } from "@stellar/stellar-sdk/contract";
import { Client, Keypair } from "shelter-sdk";
export declare class FakeClient {
    private readonly _options;
    private readonly _steward;
    options: {
        contractId: string;
    };
    constructor(_options: any, _steward?: Keypair);
    static deploy(): AssembledTransaction<Client>;
    steward(): Promise<any>;
    bound_aid(options: any): Promise<AssembledTransaction<null>>;
}
