import { Interpolation, Theme } from '@emotion/react'; import { FC, HTMLAttributes } from 'react'; import { MoveHistory } from '../../hooks/useFlatHistory'; type HistoryItemProps = { history: MoveHistory; customEntryCss?: Interpolation; disableCustomCss?: boolean; } & HTMLAttributes; export declare const LogItem: FC; export {};