1 | import { NavProps as BaseNavProps } from '@restart/ui/Nav';
|
2 | import { EventKey } from '@restart/ui/types';
|
3 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
4 | export interface ListGroupProps extends BsPrefixProps, BaseNavProps {
|
5 | variant?: 'flush' | string;
|
6 | horizontal?: boolean | string | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
7 | defaultActiveKey?: EventKey;
|
8 | numbered?: boolean;
|
9 | }
|
10 | declare const _default: BsPrefixRefForwardingComponent<"div", ListGroupProps> & {
|
11 | Item: BsPrefixRefForwardingComponent<"a", import("./ListGroupItem").ListGroupItemProps>;
|
12 | };
|
13 | export default _default;
|