import * as React from 'react'; import { i18nDefaultInterface } from './iFeedInterface'; interface Props { handleSearch: (feeds: any, searchText: any, isSearchFeed: boolean) => void; tabName: string; channelId: number | string; i18nTranslation: i18nDefaultInterface; } interface States { } export default class FeedSearch extends React.Component { constructor(props: Props); handleSearchFeed: (value: string) => void; handleSearchUser: (user: { Id: number; Name: string; }) => void; render(): JSX.Element; } export {};