import { type ComponentProps, type FC } from "react"; import type { FlowbiteBoolean, ThemingProps } from "../../types"; export interface ListGroupItemTheme { base: string; link: { base: string; active: FlowbiteBoolean; disabled: FlowbiteBoolean; href: FlowbiteBoolean; icon: string; }; } type GenericLinkButtonProps = ComponentProps<"a"> & ComponentProps<"button">; export interface ListGroupItemProps extends GenericLinkButtonProps, ThemingProps { active?: boolean; icon?: FC>; } export declare const ListGroupItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};