UNPKG

596 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3import { EventKey, Variant } from './types';
4export interface ListGroupItemProps extends Omit<React.HTMLAttributes<HTMLElement>, 'onSelect'>, BsPrefixProps {
5 action?: boolean;
6 active?: boolean;
7 disabled?: boolean;
8 eventKey?: EventKey;
9 href?: string;
10 onClick?: React.MouseEventHandler;
11 variant?: Variant;
12}
13declare type ListGroupItem = BsPrefixRefForwardingComponent<'a', ListGroupItemProps>;
14declare const ListGroupItem: ListGroupItem;
15export default ListGroupItem;