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 };
