rsuite
Version:
A suite of react components
11 lines (10 loc) • 423 B
TypeScript
import React from 'react';
import { WithAsProps } from '../@types/common';
import { Collection } from './helper/useManager';
export interface ListItemProps extends WithAsProps, React.HTMLAttributes<HTMLElement> {
index?: number;
collection?: Collection;
disabled?: boolean;
}
declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLDivElement>>;
export default ListItem;