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