import { type LocalePhrase } from '@logto/phrases-experience'; import { type FullSignInExperience } from './sign-in-experience.js'; /** * The server-side rendering data type for **experience**. */ export type SsrData = { signInExperience: { appId?: string; organizationId?: string; uiLocales?: string; data: FullSignInExperience; }; phrases: { lng: string; data: LocalePhrase; }; }; /** * Variable placeholder for **experience** server-side rendering. The value should be replaced by * the server. * * CAUTION: The value should be kept in sync with {@link file://./../../../experience/src/index.html}. * * @see {@link SsrData} for the data structure to replace the placeholders. */ export declare const ssrPlaceholder = "\"__LOGTO_SSR__\"";