import type { PageMeta, SectionConfig } from "../../lib/types.js"; export interface PageWithBody extends PageMeta { body: string; } export interface LlmsFullArgs { siteName: string; siteDescription?: string; baseUrl: string | null; pages: PageWithBody[]; sectionsConfig: SectionConfig[] | null; } export declare function llmsFullTemplate(args: LlmsFullArgs): string;