ContractCodeHistoryEntry: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ContractCodeHistoryEntry;
    encode(message: ContractCodeHistoryEntry, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ContractCodeHistoryEntryAmino): ContractCodeHistoryEntry;
    fromAminoMsg(object: ContractCodeHistoryEntryAminoMsg): ContractCodeHistoryEntry;
    fromPartial(object: {
        codeId?: bigint;
        msg?: Uint8Array;
        operation?: ContractCodeHistoryOperationType;
        updated?: {
            blockHeight?: bigint;
            txIndex?: bigint;
        };
    }): ContractCodeHistoryEntry;
    fromProtoMsg(message: ContractCodeHistoryEntryProtoMsg): ContractCodeHistoryEntry;
    toAmino(message: ContractCodeHistoryEntry): ContractCodeHistoryEntryAmino;
    toAminoMsg(message: ContractCodeHistoryEntry): ContractCodeHistoryEntryAminoMsg;
    toProto(message: ContractCodeHistoryEntry): Uint8Array;
    toProtoMsg(message: ContractCodeHistoryEntry): ContractCodeHistoryEntryProtoMsg;
}