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