import type React from 'react';

export interface LoginLayoutProps {
    bannerUrl: string | null;
    iconUrl: string | null;
    logoUrl: string | null;
    primaryColor: string;
    appName: string;
    appDescription: string;
    loginTitle: string;
    loginSubtitle: string;
    termsUrl: string | null;
    privacyUrl: string | null;
    socialLoginEnabled: boolean;
    alertNode: React.ReactNode;
    formNode: React.ReactNode;
}
