/** * SRTP parameters. */ export declare type SrtpParameters = { /** * Encryption and authentication transforms to be used. */ cryptoSuite: SrtpCryptoSuite; /** * SRTP keying material (master key and salt) in Base64. */ keyBase64: string; }; /** * SRTP crypto suite. */ export declare type SrtpCryptoSuite = 'AEAD_AES_256_GCM'; //# sourceMappingURL=SrtpParameters.d.ts.map