import { Interpolation, Theme } from '@emotion/react'; import { FC } from 'react'; import { MoveHistory } from '../../../hooks/useFlatHistory'; type LazyLogItemProps = { history: MoveHistory; itemCss: Interpolation; customEntryCss: Interpolation[]; }; export declare const LazyLogItem: FC; export {};