/**
 * Configuration for VulnZap
 *
 * Environment variables should be set in a .env file or in the system environment
 */
export declare const config: {
    app: {
        name: string;
        version: string;
        homeDir: string;
        tokenStorageKey: string;
        dataDir: string;
    };
    server: {
        port: number;
        host: string;
    };
    api: {
        vulnerability: {
            github: string;
            nvd: string;
        };
    };
};
export default config;
