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