import { FC, HTMLAttributes, ReactNode } from 'react';
import { Anchor } from '@react-foundry/anchor-list';
import { StandardProps } from '@react-foundry/component-helpers';
export type Action = Anchor;
export type SummaryListItemProps = StandardProps & HTMLAttributes & {
/** Name or 'key' of the item */
name: ReactNode | string;
/** Value of the item */
children: ReactNode;
/** Actions available for the item */
actions?: Action | Action[];
};
export declare const SummaryListItem: FC;
export default SummaryListItem;