import { ListItemProps } from './list-item-types.ts'; /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/list-item](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/list-item) * - Storybook: [ListItem](https://designsystem.dn.se/?path=/docs/basic-listitem--docs) * * This component is used to render a list item with different types of content. This lists all possible properties. Some are restricted to certain list item types. Check the list item types for more information. * * The component will not include styling by itself. Make sure to include the right styles for the component. See example below: * `@use '@bonniernews/dn-design-system-web/components/list-item/list-item.scss'` * * ## Javascript * * _The javascript is only needed for list items of type accordion or toggle_ * * ```javascript * import dsListItem from '@bonniernews/dn-design-system-web/components/list-item/list-item.js' * * const listElements = Array.from(document.getElementsByClassName("ds-list-item")); * dsListItem(listElements); * ``` * */ export declare const ListItem: (props: ListItemProps) => import("preact").JSX.Element;