import { JSX, Component } from 'solid-js'; type ListItemType = "text" | "button" | "link"; type BaseListItemProps = { type?: ListItemType; leading?: JSX.Element; headline: JSX.Element; subtitle?: JSX.Element; trailing?: JSX.Element; }; type ListItemProps = { href?: string; target?: string; } & BaseListItemProps & Omit, "children">; declare const ListItem: Component; export { ListItem, type ListItemProps, type ListItemType };