import { CertService } from "../services/CertService"; import { ProjectService } from "../../project"; export declare class CertController { protected readonly projectService: ProjectService; protected readonly certService: CertService; constructor(projectService: ProjectService, certService: CertService); list(): Promise; createCert(certName?: string, dns?: string[]): Promise; use(certName?: string, name?: string): Promise; remove(name?: string): Promise; delete(cert: string): Promise; existsNames(): Promise; existsOtherNames(): Promise; }