import * as React from 'react';
import { HTMLProps } from 'react';
type TypeProps = HTMLProps<HTMLElement> & {
    factory?: string | React.ComponentType<any>;
    active?: boolean;
    noZebra?: boolean;
    index?: number;
    selectionId?: string | number;
};
declare const ListGroupItem: React.ForwardRefExoticComponent<Omit<TypeProps, "ref"> & React.RefAttributes<unknown>>;
export default ListGroupItem;
