import { ReactElement } from 'react';
import './ListBoxSection.style.scss';
import { Props } from './ListBoxSection.types';
/**
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const ListBoxSection: <T extends object>(props: Props<T>) => ReactElement;
/**
 * ListBoxSection is used internally to display sectioned items.
 * This component should not be exported as part of the library.
 * @internal
 */
export default ListBoxSection;
