import { SSOProvider } from './ssoProvider.entity'; export declare class SSOProviderOIDCConfiguration { id: number; ssoProviderId: number; issuer: string; authorizationURL: string; tokenURL: string; userInfoURL: string; clientId: string; clientSecret: string; scopes: string[] | null; usernameClaimPaths: string[] | null; emailClaimPaths: string[] | null; roleMappings?: Record | null; createdAt: Date; updatedAt: Date; ssoProvider: SSOProvider; }