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