import React from 'react'; import type { TextInputProps } from '@sinoui/core/TextInput'; export interface Props extends Omit { /** * 值 */ value?: string | string[]; /** * 是否多选 */ multiple?: boolean; /** * 值变更时的回调函数 */ onChange?: (value: string | string[]) => void; } /** * 原生的选择框组件 */ declare const NativeSelect: React.ForwardRefExoticComponent & React.RefAttributes>; export default NativeSelect;