import type { ComponentProps, FC, PropsWithChildren } from 'react'; export type ListGroupItemProps = (PropsWithChildren> | PropsWithChildren>) & { active?: boolean; disabled?: boolean; href?: string; icon?: FC>; onClick?: () => void; }; export declare const ListGroupItem: FC;