/** * 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 { StrictReactDOMProps } from './StrictReactDOMProps'; export type StrictReactDOMButtonProps = Omit< StrictReactDOMProps, keyof ({ disabled?: null | undefined | boolean; type?: null | undefined | ('button' | 'submit'); }) > & { disabled?: null | undefined | boolean; type?: null | undefined | ('button' | 'submit'); };