export declare class Tenant {
    id: string;
    tenantId: string;
    clientId: string;
    clientSecret: string;
    identityProviderType: 'local' | 'ad' | 'ui';
    redirectUrl?: string;
    allowedOrigins?: string[];
    authSteps?: {
        type: string;
        [key: string]: any;
    }[];
    domain?: string;
}
