import CardBlock from 'CardBlocks/CardBlock'; import Reporter from 'Reporter/Reporter'; import EncryptedCertificate from 'DataTypes/EncryptedCertificate'; export default class MemberStateCertificate extends CardBlock { static BLOCK_TYPE: number; certificate: EncryptedCertificate; constructor(data: ArrayBuffer); className(): string; title(): string; toString(): string; printOn(report: Reporter): void; }