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<CombinedProps, never> {
    render(): JSX.Element;
}
declare const _default: React.ComponentClass<Props> & typeof EmptySearchResult;
export default _default;
