import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { BriefProps as BriefBasePropsType, ListItemPropsType } from './PropsType'; import { ListStyle } from './style/index'; export interface ListItemProps extends ListItemPropsType, WithThemeStyles { onPress?: () => void; onPressIn?: () => void; onPressOut?: () => void; style?: StyleProp; } export interface BriefProps extends BriefBasePropsType, WithThemeStyles> { } export declare class Brief extends React.Component { render(): JSX.Element; } export default class Item extends React.Component { static defaultProps: Partial; static Brief: typeof Brief; render(): JSX.Element; }