import * as plugins from './plugins.js'; /** * ICertManager implementation backed by smartdata document classes. * Persists SmartAcme certificates via AcmeCertDoc so they * survive process restarts without re-hitting ACME. */ export declare class StorageBackedCertManager implements plugins.smartacme.ICertManager { constructor(); init(): Promise; retrieveCertificate(domainName: string): Promise; storeCertificate(cert: plugins.smartacme.Cert): Promise; deleteCertificate(domainName: string): Promise; close(): Promise; wipe(): Promise; }