export declare function createTempCert(domains?: string[]): Promise<{
    cert: string;
    key: string;
    ca: string;
}>;
