import type { JSX } from "../../tools/JSX"; import { type TemplateProps, type ClassKey } from "../../login/TemplateProps"; import type { LazyOrNot } from "../../tools/LazyOrNot"; export type PageProps = { Template: LazyOrNot<(props: TemplateProps) => React.ReactElement | null>; kcContext: NarrowedKcContext; i18n: I18n; doUseDefaultCss: boolean; classes?: Partial>; };