tdesign-react
Version:
TDesign Component for React
12 lines (11 loc) • 521 B
TypeScript
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;