import React from 'react'; interface Props { onClick?: () => void; active?: boolean; text: string; } /** * Item component that renders a list item with an optional click handler. * @param props - The component props. * @param props.active - Indicates if the item is active. * @param props.text - The text to be displayed inside the item. * @param [props.onClick] - Optional click handler for the item. * @returns The rendered list item component. */ declare const Item: React.FC; export default Item;