import { Context, Contract } from 'fabric-contract-api'; export declare class AssetTransferContract extends Contract { InitLedger(ctx: Context): Promise; CreateAsset(ctx: Context, id: string, color: string, size: number, owner: string, appraisedValue: number): Promise; ReadAsset(ctx: Context, id: string): Promise; UpdateAsset(ctx: Context, id: string, color: string, size: number, owner: string, appraisedValue: number): Promise; DeleteAsset(ctx: Context, id: string): Promise; AssetExists(ctx: Context, id: string): Promise; TransferAsset(ctx: Context, id: string, newOwner: string): Promise; GetAllAssets(ctx: Context): Promise; }