import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { ListGroupTheme } from './theme'; export interface ListGroupProps extends ComponentProps<"ul"> { theme?: DeepPartial; direction?: "row" | "column"; bordered?: boolean; } /** * @name ListGroup * @description The ListGroup component is used to display a list of items in a list format, it is usually used to display a list of items as buttons or links, usefull for navigation in mobile devices. * @returns React.FC */ export declare const ListGroup: FC; //# sourceMappingURL=ListGroup.d.ts.map