UNPKG

semantic-ui-react

Version:
21 lines (14 loc) 567 B
import * as React from 'react' import { SemanticShorthandContent } from '../../generic' import SearchResult from './SearchResult' export interface SearchCategoryLayoutProps extends StrictSearchCategoryLayoutProps { [key: string]: any } export interface StrictSearchCategoryLayoutProps { /** The rendered category content */ categoryContent: React.ReactElement<any> /** The rendered results content */ resultsContent: React.ReactElement<any> } declare const SearchCategoryLayout: React.FC<SearchCategoryLayoutProps> export default SearchCategoryLayout