export declare type Options = { origin: string; /** * paths to exclude * @default [] */ exclude: string[]; /** * @default "monthly" */ changefreq: 'monthly' | 'weekly' | 'daily'; /** * @default 0.7 */ priority: number; /** * maximum number of entries per single sitemap xml * @default 5000 */ limit: number; /** * each generated file will have prefix * @default "sitemap" */ prefix: string; generateRobots: boolean; robotsHead: string; /** * @default true */ forceClean: boolean; }; export declare const defaultOptions: Options; //# sourceMappingURL=options.d.ts.map