import * as React from 'react'; import { ILog } from '../types'; export declare const ITEM_HEIGHT = 60; export interface IProps { testID?: string; item: ILog; onPress: () => void; color: string; } export declare const Item: React.FC; export default Item;