import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface ListItemInterfaceProps extends PropsInterface { } export declare class ListItem extends PureComponent { constructor(props: any); render(): JSX.Element; }