import { type Operation } from "effection"; export interface StaticalizeOptions { host: URL; base: URL; dir: string; strict?: boolean; concurrency?: number; retries?: number; } export interface Staticalizer { urls: ReadonlySet; staticalize(): Operation; } export declare function useStaticalizer(options: StaticalizeOptions): Operation; export interface SitemapURL { loc: string; lastmod?: string; changefreq?: string; priority?: string; } //# sourceMappingURL=staticalize.d.ts.map