You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
616 B
14 lines
616 B
import { NavProps as BaseNavProps } from '@restart/ui/Nav';
|
|
import { EventKey } from '@restart/ui/types';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface ListGroupProps extends BsPrefixProps, BaseNavProps {
|
|
variant?: 'flush' | string;
|
|
horizontal?: boolean | string | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
defaultActiveKey?: EventKey;
|
|
numbered?: boolean;
|
|
}
|
|
declare const _default: BsPrefixRefForwardingComponent<"div", ListGroupProps> & {
|
|
Item: BsPrefixRefForwardingComponent<"a", import("./ListGroupItem").ListGroupItemProps>;
|
|
};
|
|
export default _default;
|