import type { BaseCredential } from './BaseCredential'; export declare type SAMLCredential = (BaseCredential & { type?: SAMLCredential.type; data?: { entryPoint: string; issuer: string; audience?: string; cert: string; signatureAlgorithm?: string; digestAlgorithm?: string; }; }); export declare namespace SAMLCredential { enum type { SAML = "saml" } }