/// <reference types="react" />
import React from 'react';
import { ListItemNativeProps, BriefNativeProps } from './PropsType';
export declare class Brief extends React.Component<BriefNativeProps, any> {
    render(): JSX.Element;
}
export default class Item extends React.Component<ListItemNativeProps, any> {
    static defaultProps: Partial<ListItemNativeProps>;
    static Brief: typeof Brief;
    render(): JSX.Element;
}
