/// <reference types="node" />
export declare function getStartupConfig(): Promise<{
    host?: string;
    httpsOptions?: {
        key?: Buffer;
        cert?: Buffer;
        pfx?: Buffer;
        passphrase?: string;
    };
    cspWsOveride?: string;
    debug?: boolean;
}>;
