import React from 'react'; import cx from 'classnames'; import styles from './ListGroup.module.scss'; export interface Props { /** Children of the ListGroup -- can be ListItems or other elements that can take ListItems as children or props */ children?: React.ReactNode; /** CSS className for the List.Group container */ className?: Parameters[0]; /** A JSX element (html tag or React component) to show at the top of the ListGroup */ header?: React.ReactNode; /** A CSS class to apply to the individual ListItems within the ListGroup */ listItemClassName?: Parameters[0]; } export declare const ListGroup: React.FC; export default ListGroup; export { styles }; //# sourceMappingURL=index.d.ts.map