import React from 'react'; export interface Props { children: React.ReactChild; } declare const Item: ({ children }: Props) => JSX.Element; export default Item;