UNPKG

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