/// <reference types="react" />
import React from 'react';
import { ListItemWebProps, BriefWebProps } from './PropsType';
export declare class Brief extends React.Component<BriefWebProps, any> {
    render(): JSX.Element;
}
declare class ListItem extends React.Component<ListItemWebProps, any> {
    static defaultProps: Partial<ListItemWebProps>;
    static Brief: typeof Brief;
    debounceTimeout: any;
    constructor(props: any);
    componentWillUnmount(): void;
    onClick: (ev: any) => void;
    render(): JSX.Element;
}
export default ListItem;
