import { default as React } from 'react'; export interface ListItemProps extends React.ComponentPropsWithoutRef<'li'> { /** * Specify the text for List.Item */ children?: React.ReactNode; /** * Specify an Icon for the List.Item */ icon?: React.ReactNode; } /** * @param {React.ReactNode} children - Specify the text for List.Item * @param {React.ReactNode} icon - Specify an Icon for the list item */ export declare const ListItem: ({ children, icon, style: _style, className: _className, ...props }: ListItemProps) => import("react/jsx-runtime").JSX.Element;