1 | import * as React from 'react';
|
2 | import { NavItemProps as BaseNavItemProps } from '@restart/ui/NavItem';
|
3 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
4 | import { Variant } from './types';
|
5 | export interface ListGroupItemProps extends Omit<BaseNavItemProps, 'onSelect'>, BsPrefixProps {
|
6 | action?: boolean;
|
7 | onClick?: React.MouseEventHandler;
|
8 | variant?: Variant;
|
9 | }
|
10 | declare const ListGroupItem: BsPrefixRefForwardingComponent<'a', ListGroupItemProps>;
|
11 | export default ListGroupItem;
|