import { ReactNode } from 'react'; export declare function Item(props: ItemProps): JSX.Element; interface ItemProps { label: string; style?: any; labelStyle?: any; value?: string | ReactNode; valueStyle?: any; } export {};