import { type ComponentProps, type FC } from "react"; import type { ThemingProps } from "../../types"; export interface ListItemTheme { icon: string; withIcon: { on: string; off: string; }; } export interface ListItemProps extends ComponentProps<"li">, ThemingProps { className?: string; icon?: FC>; } export declare const ListItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;