import { PartialColor, Branding, GeneratedSchema } from './../foundations/index.js'; /** * Application level sign-in experience configuration. * * @remarks This is a type for database creation. * @see {@link ApplicationSignInExperience} for the original type. */ export type CreateApplicationSignInExperience = { tenantId?: string; applicationId: string; color?: PartialColor; branding?: Branding; customCss?: string | null; termsOfUseUrl?: string | null; privacyPolicyUrl?: string | null; displayName?: string | null; }; /** Application level sign-in experience configuration. */ export type ApplicationSignInExperience = { tenantId: string; applicationId: string; color: PartialColor; branding: Branding; customCss: string | null; termsOfUseUrl: string | null; privacyPolicyUrl: string | null; displayName: string | null; }; export type ApplicationSignInExperienceKeys = 'tenantId' | 'applicationId' | 'color' | 'branding' | 'customCss' | 'termsOfUseUrl' | 'privacyPolicyUrl' | 'displayName'; export declare const ApplicationSignInExperiences: GeneratedSchema;