import { HTMLAttributes } from 'react'; export type HistoryEntryProps

= { player?: P; depth?: number; backgroundColor?: string; borderTop?: boolean; borderBottom?: boolean; } & HTMLAttributes; export declare const HistoryEntry:

({ player, depth, backgroundColor, borderTop, borderBottom, children, ...props }: HistoryEntryProps

) => import("@emotion/react/jsx-runtime").JSX.Element;