import { NginxConfig } from './nginx_reverse_proxy';
export declare const setup: (nginxConfig: NginxConfig, nginxConfigFilePath: string | undefined, nginxConfigDir: string | undefined, sslCrtLines: string[], sslKeyLines: string[]) => Promise<{
    res: boolean | {
        error: any;
    };
    key: string;
    crt: string;
    random: number;
}>;
export declare const execCmd: (cmd: string) => Promise<unknown>;
export declare const test: () => Promise<string | null>;
//# sourceMappingURL=index.d.ts.map