import React from "react"; export declare type TableListItemProps = JSX.IntrinsicElements["div"] & { /** Display the values inline */ inline?: boolean; /** Name of the item */ name: string; /** Values of the item */ values: string[]; }; export declare const TableListItem: React.FC;