import { ComponentType } from 'react'; import { HeaderProps } from './Header'; export type MaterialHeaderProps = MaterialHeaderContentProps & HeaderProps; export declare const MaterialHeader: ({ loading, rulesStepsHeaders, GameOver, GameOverRule, ...props }: MaterialHeaderProps) => import("@emotion/react/jsx-runtime").JSX.Element; type MaterialHeaderContentProps = { loading?: boolean; rulesStepsHeaders: Partial>; /** * @deprecated Use {@link ScoringDescription.ResultHeader} instead. `ResultHeader` is read from the game context by both * this header and the result popup, so the result text stays aligned. The `GameOver` prop only overrides the header and * leaves the popup showing a different content. */ GameOver?: ComponentType; GameOverRule?: ComponentType; }; export {};