import { Component, PropsOf } from '@builder.io/qwik'; import type { IconProps } from 'flowbite-qwik-icons'; import type { LinkProps } from '@builder.io/qwik-city'; type ListGroupItemProps = PropsOf<'a'> & PropsOf<'button'> & { active?: boolean; disabled?: boolean; href?: string; tag?: Component | string; icon?: Component; onClick$?: () => void; }; export declare const ListGroupItem: Component; export {};