import { SymmetricKey, X509Thumbprint } from './index.js'; export type AuthenticationMechanism = { type: AuthenticationMechanismType; x509Thumbprint: X509Thumbprint; symmetricKey: SymmetricKey; }; export declare enum AuthenticationMechanismType { certificateAuthority = "certificateAuthority", none = "none", sas = "sas", selfSigned = "selfSigned" }