import { type ReactNode, type ComponentProps } from 'react'; import { ListItemStyled } from './style'; export type ListItemStyledProps = ComponentProps; interface ListItemI extends ListItemStyledProps { children?: ReactNode; icon?: ReactNode; actions?: ReactNode; } declare function ListItem({ children, icon, actions, ...props }: ListItemI): import("react").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;