import type { CipherSuitesResponse } from './CipherSuitesResponse'; /** * @type CipherSuitesEnvelope: * * @property data: * */ export type CipherSuitesEnvelope = { data: CipherSuitesResponse; } & { [key: string]: any; };