export declare const changeFreqList: string[]; export declare const mapifyInitConfigTemplate = "/** @type {import('mapify-cli').MapifyConfig} */\n\nmodule.exports = {\n baseUrl: \"http://example.com\",\n outputPaths : ['./dist/angular-ssr/browser'],\n pages: [\n {\n path : '/', // required value\n priority: 1, // required value\n changeFreq: 'weekly', // optional value\n componentPath: './src/app/pages/home/**' // optional value\n },\n {\n path : '/about',\n priority: 0.8,\n changeFreq: 'monthly',\n componentPath: './src/app/pages/about/**'\n },\n {\n path : '/contact',\n priority: 0.8,\n changeFreq: 'monthly',\n componentPath: './src/app/pages/contact/**'\n },\n {\n path: '/login',\n priority: 0.75,\n changeFreq: 'monthly',\n componentPath: './src/app/pages/login/**'\n }\n ],\n};\n";