import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "likechain.likenft.v1"; export interface Offer { classId: string; nftId: string; buyer: string; price: Long; expiration?: Date; } export interface OfferStoreRecord { classId: string; nftId: string; buyer: Uint8Array; price: Long; expiration?: Date; } export declare const Offer: { encode(message: Offer, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): Offer; fromJSON(object: any): Offer; toJSON(message: Offer): unknown; fromPartial(object: DeepPartial): Offer; }; export declare const OfferStoreRecord: { encode(message: OfferStoreRecord, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): OfferStoreRecord; fromJSON(object: any): OfferStoreRecord; toJSON(message: OfferStoreRecord): unknown; fromPartial(object: DeepPartial): OfferStoreRecord; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined | Long; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};