ServiceDescriptorProto: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ServiceDescriptorProto;
    encode(message: ServiceDescriptorProto, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ServiceDescriptorProtoAmino): ServiceDescriptorProto;
    fromAminoMsg(object: ServiceDescriptorProtoAminoMsg): ServiceDescriptorProto;
    fromPartial(object: {
        method?: {
            clientStreaming?: boolean;
            inputType?: string;
            name?: string;
            options?: {
                deprecated?: boolean;
                idempotencyLevel?: MethodOptions_IdempotencyLevel;
                uninterpretedOption?: {
                    aggregateValue?: (...) | (...);
                    doubleValue?: (...) | (...);
                    identifierValue?: (...) | (...);
                    name?: (...) | (...);
                    negativeIntValue?: (...) | (...);
                    positiveIntValue?: (...) | (...);
                    stringValue?: (...) | (...);
                }[];
            };
            outputType?: string;
            serverStreaming?: boolean;
        }[];
        name?: string;
        options?: {
            deprecated?: boolean;
            uninterpretedOption?: {
                aggregateValue?: string;
                doubleValue?: number;
                identifierValue?: string;
                name?: {
                    isExtension?: (...) | (...) | (...);
                    namePart?: (...) | (...);
                }[];
                negativeIntValue?: bigint;
                positiveIntValue?: bigint;
                stringValue?: Uint8Array;
            }[];
        };
    }): ServiceDescriptorProto;
    fromProtoMsg(message: ServiceDescriptorProtoProtoMsg): ServiceDescriptorProto;
    toAmino(message: ServiceDescriptorProto): ServiceDescriptorProtoAmino;
    toProto(message: ServiceDescriptorProto): Uint8Array;
    toProtoMsg(message: ServiceDescriptorProto): ServiceDescriptorProtoProtoMsg;
}