MsgAcknowledgement: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgAcknowledgement;
    encode(message: MsgAcknowledgement, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgAcknowledgementAmino): MsgAcknowledgement;
    fromAminoMsg(object: MsgAcknowledgementAminoMsg): MsgAcknowledgement;
    fromPartial(object: {
        acknowledgement?: Uint8Array;
        packet?: {
            data?: Uint8Array;
            destinationChannel?: string;
            destinationPort?: string;
            sequence?: bigint;
            sourceChannel?: string;
            sourcePort?: string;
            timeoutHeight?: {
                revisionHeight?: bigint;
                revisionNumber?: bigint;
            };
            timeoutTimestamp?: bigint;
        };
        proofAcked?: Uint8Array;
        proofHeight?: {
            revisionHeight?: bigint;
            revisionNumber?: bigint;
        };
        signer?: string;
    }): MsgAcknowledgement;
    fromProtoMsg(message: MsgAcknowledgementProtoMsg): MsgAcknowledgement;
    toAmino(message: MsgAcknowledgement): MsgAcknowledgementAmino;
    toAminoMsg(message: MsgAcknowledgement): MsgAcknowledgementAminoMsg;
    toProto(message: MsgAcknowledgement): Uint8Array;
    toProtoMsg(message: MsgAcknowledgement): MsgAcknowledgementProtoMsg;
}