import { contract } from "@stellar/stellar-sdk";
export declare class FakeSAC {
    transfer({ from, to, amount, }: {
        from: string;
        to: string;
        amount: bigint;
    }): Promise<contract.AssembledTransaction<null>>;
}
