import { ReactElement } from 'react';
import './ListBoxSection.style.scss';
import { Props } from './ListBoxSection.types';
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;
