import { HTMLAttributes } from 'react'; export type HistoryEntryProps
= {
player?: P;
depth?: number;
backgroundColor?: string;
borderTop?: boolean;
borderBottom?: boolean;
} & HTMLAttributes ({ player, depth, backgroundColor, borderTop, borderBottom, children, ...props }: HistoryEntryProps ) => import("@emotion/react/jsx-runtime").JSX.Element;