/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { AutoComplete, StrictReactDOMProps } from './StrictReactDOMProps'; export type StrictReactDOMSelectProps = Readonly< Omit< StrictReactDOMProps, keyof ({ autoComplete?: AutoComplete; defaultValue?: null | undefined | (string | Array); multiple?: null | undefined | boolean; name?: null | undefined | string; required?: null | undefined | boolean; onBeforeInput?: any; onChange?: any; onInput?: any; onInvalid?: any; onSelect?: any; value?: null | undefined | (string | Array); }) > & { autoComplete?: AutoComplete; defaultValue?: null | undefined | (string | Array); multiple?: null | undefined | boolean; name?: null | undefined | string; required?: null | undefined | boolean; onBeforeInput?: any; onChange?: any; onInput?: any; onInvalid?: any; onSelect?: any; value?: null | undefined | (string | Array); } >;