import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.nft.v1beta1"; /** EventSend is emitted on Msg/Send */ export interface EventSend { /** class_id associated with the nft */ classId: string; /** id is a unique identifier of the nft */ id: string; /** sender is the address of the owner of nft */ sender: string; /** receiver is the receiver address of nft */ receiver: string; } /** EventMint is emitted on Mint */ export interface EventMint { /** class_id associated with the nft */ classId: string; /** id is a unique identifier of the nft */ id: string; /** owner is the owner address of the nft */ owner: string; } /** EventBurn is emitted on Burn */ export interface EventBurn { /** class_id associated with the nft */ classId: string; /** id is a unique identifier of the nft */ id: string; /** owner is the owner address of the nft */ owner: string; } export declare const EventSend: { encode(message: EventSend, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): EventSend; fromJSON(object: any): EventSend; toJSON(message: EventSend): unknown; create(base?: DeepPartial): EventSend; fromPartial(object: DeepPartial): EventSend; }; export declare const EventMint: { encode(message: EventMint, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): EventMint; fromJSON(object: any): EventMint; toJSON(message: EventMint): unknown; create(base?: DeepPartial): EventMint; fromPartial(object: DeepPartial): EventMint; }; export declare const EventBurn: { encode(message: EventBurn, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): EventBurn; fromJSON(object: any): EventBurn; toJSON(message: EventBurn): unknown; create(base?: DeepPartial): EventBurn; fromPartial(object: DeepPartial): EventBurn; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};