import { Interpolation, Theme } from '@emotion/react'; import { FC, HTMLAttributes } from 'react'; import { SetupLogDescription } from '../../Log'; type SetupLogItemProps = { log: SetupLogDescription; game: any; index: number; customEntryCss?: Interpolation; } & HTMLAttributes; export declare const SetupLogItem: FC; export {};