/** * Regular expression to match placeholders in HTML. */ export declare const PLACEHOLDER_REGEX: RegExp; /** * Suffix for index routes in Astro. */ export declare const INDEX_SUFFIX = "/index"; /** * Auto-generated file marker. */ export declare const GENERATED_FILE_MARKER = "// Auto-generated by astro-cloudflare-pages-static"; /** * Glob pattern for all supported page files. */ export declare const PAGE_FILES_GLOB: string; /** * Regular expression to match all supported page file extensions. */ export declare const PAGE_FILES_REGEX: RegExp; /** * Regular expression to match page render file extensions (excludes endpoints). */ export declare const PAGE_RENDER_FILES_REGEX: RegExp; /** * Creates a placeholder string for a given parameter name. */ export declare function createPlaceholder(paramName: string): string; /** * Escapes HTML special characters to prevent XSS attacks. * Re-exported from worker/escape.js for consistency. */ export { escapeHtml } from './worker/escape.js';