PubKey: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): PubKey;
    encode(message: PubKey, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: PubKeyAmino): PubKey;
    fromAminoMsg(object: PubKeyAminoMsg): PubKey;
    fromPartial(object: {
        key?: Uint8Array;
    }): PubKey;
    fromProtoMsg(message: PubKeyProtoMsg): PubKey;
    toAmino(message: PubKey): PubKeyAmino;
    toAminoMsg(message: PubKey): PubKeyAminoMsg;
    toProto(message: PubKey): Uint8Array;
    toProtoMsg(message: PubKey): PubKeyProtoMsg;
}