UNPKG

tdesign-react

Version:
12 lines (11 loc) 521 B
import React from 'react'; import { type PopupRef } from '../popup'; import type { StyledProps } from '../common'; import type { InputRef } from '../input'; import type { TdSelectInputProps } from './type'; export interface SelectInputProps extends TdSelectInputProps, StyledProps { updateScrollTop?: (content: HTMLDivElement) => void; options?: any[]; } declare const SelectInput: React.ForwardRefExoticComponent<SelectInputProps & React.RefAttributes<Partial<PopupRef & InputRef>>>; export default SelectInput;