import { JSX } from "solid-js"; import { NavItemProps as BaseNavItemProps } from "solid-bootstrap-core"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; import { Variant } from "./types"; export interface ListGroupItemProps extends Omit, BsPrefixProps { action?: boolean; onClick?: JSX.EventHandlerUnion; variant?: Variant; } declare const ListGroupItem: BsPrefixRefForwardingComponent<"a", ListGroupItemProps>; export default ListGroupItem;