export interface ICertificate { host?: string; key?: Buffer; cert?: string; } export default class CertificateStore { get folder(): string; set folder(v: string); getAccountKey(): Promise>; get({ host }: ICertificate): Promise; save({ host, cert, key }: ICertificate): Promise; private getPaths; } //# sourceMappingURL=CertificateStore.d.ts.map