export class Contract {
    constructor(contractId: any);
    _id: Buffer;
    contractId(): string;
    toString(): string;
    address(): Address;
    call(method: string, ...params: xdr.ScVal[]): xdr.Operation;
    getFootprint(): xdr.LedgerKey;
}
import { Address } from "./address";
