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;
    size?: 'lg' | 'md' | 'sm';
}
declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLDivElement>>;
export default ListItem;
