UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 410 B
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;