declare const __IMPRENSA_CONTENT_DIR__: string; declare const __IMPRENSA_REPO__: string; declare const __IMPRENSA_REPO_BRANCH__: string; declare const __IMPRENSA_REPO_PATH__: string; declare const __IMPRENSA_RAW_SOURCES__: Record; declare module "imprensa/shiki" { export const shiki: { loadLanguage: (lang: string) => Promise; codeToHtml: ( code: string, options: { lang: string; themes: { light: string; dark: string } }, ) => string; }; } declare module "imprensa/landing-shiki" { export const fileTreeHtml: string; export const mdxHtml: string; export const buildHtml: string; } declare module "imprensa/mdx-islands" { export const mdxIslandLoaders: Record< string, Record Promise<{ mount?: unknown; default?: { mount?: unknown } }>> >; export const mdxIslandSequences: Record; } declare module "imprensa/content-tree" { import type { ContentTreeNode } from "imprensa/mdx"; export const contentTree: ContentTreeNode[]; } declare module "imprensa/config" { import type { ImprensaShikiOptions, ImprensaSocialLink } from "imprensa"; export type { ImprensaSocialLink, ImprensaSocialService } from "imprensa"; export const socials: ImprensaSocialLink[]; export const shiki: ImprensaShikiOptions; export const hostname: string; export const shikiThemes: { light: string; dark: string }; export const siteName: string; export const logoSrc: string; export const topLevelSplit: boolean; } declare module "ilha:pages/server" { import type { Island } from "ilha"; import type { RouterBuilder } from "@ilha/router"; export const pageRouter: RouterBuilder; export const registry: Record, Record>>; } declare module "ilha:pages/client" { import type { Island } from "ilha"; import type { RouterBuilder } from "@ilha/router"; export const pageRouter: RouterBuilder; export const registry: Record, Record>>; } declare module "ilha:loaders" { // Side-effect-only module. Importing it attaches loaders to the server pageRouter. }