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 /** The rendered results content */ resultsContent: React.ReactElement } declare const SearchCategoryLayout: React.FC export default SearchCategoryLayout