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