ServiceOptions: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ServiceOptions;
    encode(message: ServiceOptions, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ServiceOptionsAmino): ServiceOptions;
    fromAminoMsg(object: ServiceOptionsAminoMsg): ServiceOptions;
    fromPartial(object: {
        deprecated?: boolean;
        uninterpretedOption?: {
            aggregateValue?: string;
            doubleValue?: number;
            identifierValue?: string;
            name?: {
                isExtension?: boolean;
                namePart?: string;
            }[];
            negativeIntValue?: bigint;
            positiveIntValue?: bigint;
            stringValue?: Uint8Array;
        }[];
    }): ServiceOptions;
    fromProtoMsg(message: ServiceOptionsProtoMsg): ServiceOptions;
    toAmino(message: ServiceOptions): ServiceOptionsAmino;
    toProto(message: ServiceOptions): Uint8Array;
    toProtoMsg(message: ServiceOptions): ServiceOptionsProtoMsg;
}