export declare const SITE = "https://melete.mneme-ai.space"; /** Open-Graph + Twitter-card meta — rich, shareable link previews (text everywhere; SVG card on supporting clients). */ export declare function socialMeta(o: { title: string; desc: string; path: string; img: string; }): string; /** A 1200×630 branded social card (SVG). Per-field when key is given; otherwise the master brand card. */ export declare function socialCard(key?: string): string; /** A branded gem favicon (SVG) — crisp at every size, served at /favicon.svg. */ export declare function faviconSvg(): string; export declare function faviconLinks(): string; /** JSON-LD structured data — SoftwareApplication + WebPage (+ optional Breadcrumb / FAQ). * Honest: free OSS tier, real author, no fabricated ratings; the FAQ answers are the measured claims only. */ export declare function structuredData(path: string, name: string, desc: string, opts?: { breadcrumb?: Array<{ name: string; url: string; }>; faq?: boolean; }): string; /** robots.txt — allow all, point at the sitemap. */ export declare function robotsTxt(): string; /** sitemap.xml — home + pitch + docs + every per-profession page. */ export declare function sitemapXml(): string; export declare const ENDPOINTS: { method: string; path: string; what: string; }[]; export declare function vizProject(gi: number, gj: number, t: number, nx: number, ny: number): [number, number]; export declare function landingPage(version?: string): string; export declare function pitchDeck(version?: string): string; export declare const AUDIENCE_KEYS: readonly ["pharma", "chem", "gpu", "aero", "phys", "infra", "energy", "security"]; export declare function audiencePage(key: string, version?: string): string; export declare function serverGauntlet(): { score: 0 | 100; checks: Array<{ name: string; pass: boolean; detail: string; }>; }; export declare function docsPage(version: string | number): string; //# sourceMappingURL=server.d.ts.map