import type React from 'react';

export interface TenantLoginLayoutProps {
    bannerUrl: string | null;
    iconUrl: string | null;
    logoUrl: string | null;
    primaryColor: string;
    appName: string;
    appDescription: string;
    loginTitle: string;
    loginSubtitle: string;
    alertNode: React.ReactNode;
    formNode: React.ReactNode;
}
