import { HTMLAttributes } from 'react'; export type LoadingScreenProps = { gameBox?: string; author?: string | string[]; artist?: string | string[]; publisher?: string | string[]; developer?: string | string[]; display: boolean; } & HTMLAttributes; export default function LoadingScreen({ gameBox, author, artist, publisher, developer, display, ...props }: LoadingScreenProps): import("@emotion/react/jsx-runtime").JSX.Element;