import * as React from 'react'; import { ILog } from '../types'; export interface IProps { item: ILog; text?: string; subText?: string; textColor?: Object; backgroundColor?: string; } export declare const tag: (color: string, text: string) => JSX.Element; export declare const reduxTag: () => JSX.Element; export declare const Status: React.FC;