import * as React from 'react'; import { WithAppProviderProps } from '../AppProvider'; export interface Props { title: string; description?: string; withIllustration?: boolean; } export declare type CombinedProps = Props & WithAppProviderProps; export declare class EmptySearchResult extends React.PureComponent { render(): JSX.Element; } declare const _default: React.ComponentClass & typeof EmptySearchResult; export default _default;