import React from 'react';
import { ListItemProps } from './type';
declare const ListItem: {
    ({ as, href, active, className, content, children, ...props }: ListItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    displayName: string;
};
export default ListItem;
