import { FC } from 'react'; import { TaroSearchBarProps } from './type'; interface SearchBarProps extends Partial { /** * 是否展示边框 * @default false */ border?: boolean initialType?: 'center' | 'default'; /** * 输入框默认暗纹 * @default 请输入 */ placeholder?: string onClick?: () => void; /** * 输入框高度 * @default 32 */ contentHeight?: number } declare const SearchBar: FC>; export type { SearchBarProps } from '@nutui/nutui-react-taro'; export { SearchBar };