softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
15 lines (12 loc) • 353 B
TypeScript
import { ViewStyle } from 'react-native';
import React from 'react';
import { SetState } from '../types.js';
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 };