import type { DetailedHTMLProps, ForwardedRef, HTMLAttributes, WeakValidationMap } from "react"; import type ReactElementProps from "../../types/react-element-properties/react-element-properties"; export type PyInputBoxPropertiesBase = Omit, HTMLElement>>, "children"> & { children: string; }; export type PyInputBoxProperties = OptionalProperties extends infer OptionalProperties ? OptionalProperties & PyInputBoxPropertiesBase : PyInputBoxPropertiesBase; export type PyInputBoxTag = { (properties: PyInputBoxProperties, reference?: ForwardedRef): JSX.Element; displayName?: string; defaultProps?: Partial; propTypes?: WeakValidationMap; };