import { SSOProvider } from './ssoProvider.entity'; export declare class SSOProviderSAMLConfiguration { id: number; ssoProviderId: number; ssoProvider: SSOProvider; entryPoint: string; issuer: string; certificate: string; audience?: string | null; signRequest: boolean; wantAssertionsSigned: boolean; wantAuthnResponseSigned: boolean; forceAuthn: boolean; emailAttributeKeys?: string[] | null; provisioningSecret?: string | null; roleMappings?: Record | null; spSigningCertificate?: string | null; spSigningKeyEncrypted?: string | null; spSigningKeyEncryptionKeyId?: string | null; createdAt: Date; updatedAt: Date; }