import {BaseEventOrig, InputProps, ViewProps} from '@tarojs/components' import {FunctionComponent} from 'react' export interface SearchProps extends ViewProps { style?: React.CSSProperties inputStyle?: React.CSSProperties placeholderStyle?: string children?: React.ReactNode placeholder?: string focus?: boolean value?: string backgroundColor?: string textColor?: string closeIconColor?: string textPlaceholderColor?: string iconColor?: string buttonColor?: string onConfirm: (value: string) => void onChange?: (e: BaseEventOrig) => void } declare const Search: FunctionComponent export {Search}