// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { ChangeEvent } from 'react'; import classNames from 'classnames'; export type Option = Readonly<{ text: string; value: string | number; }>; export type PropsType = Readonly<{ moduleClassName?: string; options: ReadonlyArray