import { BreakpointSupport } from '../../../helpers'; import { VerticalSpacingItemProps } from '../../layout/vertical-spacing'; type ListItemBreakpointProps = { /** * Props for controlling vertical spacing between list items. If provided, * the List will be wrapped inside a VerticalSpacing component. */ verticalSpacingItem?: Omit; }; export interface ListItemProps extends BreakpointSupport { /** * List children should be ListItem components */ children: React.ReactNode; /** * Adds a custom CSS class to the ListItem element for additional styling or theming purposes */ className?: string; } export declare const ListItem: (props: ListItemProps) => import("react/jsx-runtime").JSX.Element; export default ListItem;