UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

15 lines (12 loc) 354 B
import { ViewStyle } from 'react-native'; import React from 'react'; import { SetState } from '../types.mjs'; import 'softchatjs-core'; type Search = { value: string; setValue: SetState<string>; placeholder: string; containerStyle?: ViewStyle; }; declare function Search(props: Search): React.JSX.Element; export { Search as default };