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