import type { ComponentProps, FC, PropsWithChildren } from 'react'; import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteListGroupTheme { base: string; item: { active: FlowbiteBoolean; base: string; href: FlowbiteBoolean; icon: string; }; } export type ListGroupProps = PropsWithChildren>; export declare const ListGroup: FC & { Item: FC; };