ConsensusStateWithHeight: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ConsensusStateWithHeight;
    encode(message: ConsensusStateWithHeight, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ConsensusStateWithHeightAmino): ConsensusStateWithHeight;
    fromAminoMsg(object: ConsensusStateWithHeightAminoMsg): ConsensusStateWithHeight;
    fromPartial(object: {
        consensusState?: {
            $typeUrl?: string;
            typeUrl?: string;
            value?: Uint8Array;
        };
        height?: {
            revisionHeight?: bigint;
            revisionNumber?: bigint;
        };
    }): ConsensusStateWithHeight;
    fromProtoMsg(message: ConsensusStateWithHeightProtoMsg): ConsensusStateWithHeight;
    toAmino(message: ConsensusStateWithHeight): ConsensusStateWithHeightAmino;
    toAminoMsg(message: ConsensusStateWithHeight): ConsensusStateWithHeightAminoMsg;
    toProto(message: ConsensusStateWithHeight): Uint8Array;
    toProtoMsg(message: ConsensusStateWithHeight): ConsensusStateWithHeightProtoMsg;
}