@publier/native 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # @publier/native
@@ -0,0 +1,635 @@
1
+ import { createRequire } from "node:module";
2
+ //#region \0rolldown/runtime.js
3
+ //#endregion
4
+ //#region ts/core/analytics.d.ts
5
+ interface Ga4Config {
6
+ measurementId: string;
7
+ }
8
+ interface PosthogConfig {
9
+ apiKey: string;
10
+ host?: string;
11
+ }
12
+ interface PlausibleConfig {
13
+ domain: string;
14
+ selfHosted?: string;
15
+ }
16
+ interface FathomConfig {
17
+ siteId: string;
18
+ }
19
+ interface UmamiConfig {
20
+ websiteId: string;
21
+ src: string;
22
+ }
23
+ interface CustomScript {
24
+ src?: string;
25
+ content?: string;
26
+ async?: boolean;
27
+ defer?: boolean;
28
+ placement?: 'head' | 'body';
29
+ }
30
+ interface AnalyticsProvider {
31
+ ga4?: Ga4Config;
32
+ posthog?: PosthogConfig;
33
+ plausible?: PlausibleConfig;
34
+ fathom?: FathomConfig;
35
+ umami?: UmamiConfig;
36
+ scripts?: CustomScript[];
37
+ }
38
+ declare function generateAnalyticsScripts(analytics: AnalyticsProvider): string;
39
+ declare function generateAnalyticsBodyScripts(analytics: AnalyticsProvider): string;
40
+ //#endregion
41
+ //#region ts/core/types.d.ts
42
+ interface Page {
43
+ slug: string[];
44
+ url: string;
45
+ filePath: string;
46
+ frontmatter: {
47
+ title: string;
48
+ description?: string;
49
+ order?: number;
50
+ icon?: string;
51
+ [key: string]: unknown;
52
+ };
53
+ toc: TocEntry[];
54
+ structuredData: StructuredSection[];
55
+ lastModified?: string;
56
+ bodyHtml?: string;
57
+ locale?: string;
58
+ }
59
+ interface TocEntry {
60
+ depth: number;
61
+ title: string;
62
+ url: string;
63
+ }
64
+ interface StructuredSection {
65
+ heading?: string;
66
+ content: string;
67
+ }
68
+ interface PageTreeNode {
69
+ type: 'page';
70
+ title: string;
71
+ url: string;
72
+ badge?: {
73
+ label: string;
74
+ variant?: string;
75
+ };
76
+ }
77
+ interface FolderTreeNode {
78
+ type: 'folder';
79
+ title: string;
80
+ children: TreeNode[];
81
+ defaultOpen?: boolean;
82
+ }
83
+ type TreeNode = PageTreeNode | FolderTreeNode;
84
+ interface PageTree {
85
+ root: TreeNode[];
86
+ }
87
+ interface ContentSource {
88
+ getPage(slug: string[]): Promise<Page | undefined>;
89
+ getPages(): Promise<Page[]>;
90
+ getPageTree(): Promise<PageTree>;
91
+ generateParams(): Promise<{
92
+ slug: string[];
93
+ }[]>;
94
+ }
95
+ //#endregion
96
+ //#region ts/core/blog.d.ts
97
+ declare function sortByDate(pages: Page[]): Page[];
98
+ declare function getTagCounts(pages: Page[]): Map<string, number>;
99
+ declare function filterByTag(pages: Page[], tag: string): Page[];
100
+ declare function getReadingTime(structuredData: {
101
+ heading?: string;
102
+ content: string;
103
+ }[]): number;
104
+ //#endregion
105
+ //#region ts/core/llms.d.ts
106
+ interface LlmsPage {
107
+ url: string;
108
+ title: string;
109
+ description?: string;
110
+ collection?: string;
111
+ }
112
+ interface LlmsOptions {
113
+ siteName: string;
114
+ siteDescription?: string;
115
+ pages: LlmsPage[];
116
+ collections?: string[];
117
+ }
118
+ declare function generateLlmsTxt(options: LlmsOptions): string;
119
+ //#endregion
120
+ //#region ts/core/og-image.d.ts
121
+ interface TwitterMetaTag {
122
+ name: string;
123
+ content: string;
124
+ }
125
+ interface TwitterMetaOptions {
126
+ title: string;
127
+ description: string;
128
+ imageUrl: string;
129
+ twitterHandle?: string;
130
+ cardType?: 'summary' | 'summary_large_image';
131
+ }
132
+ declare function generateTwitterMeta(options: TwitterMetaOptions): TwitterMetaTag[];
133
+ interface OgImageOptions {
134
+ title: string;
135
+ description?: string;
136
+ siteName: string;
137
+ theme?: 'light' | 'dark';
138
+ width?: number;
139
+ height?: number;
140
+ fonts?: object[];
141
+ }
142
+ declare const MAX_TITLE_LEN = 200;
143
+ declare const MAX_DESCRIPTION_LEN = 400;
144
+ declare const MAX_SITENAME_LEN = 80;
145
+ declare function clamp(value: string, max: number): string;
146
+ declare function generateOgImage(options: OgImageOptions): Promise<Uint8Array>;
147
+ //#endregion
148
+ //#region ts/core/publier-config.d.ts
149
+ declare const TOGGLEABLE_PAGES: readonly ["docs", "blog", "landing", "press", "about", "team", "contact", "careers", "changelog", "status", "knowledge-base", "404"];
150
+ type ToggleablePage = (typeof TOGGLEABLE_PAGES)[number];
151
+ type PagesToggleMap = Partial<Record<ToggleablePage, boolean>>;
152
+ declare const APPEARANCE_DEFAULTS: readonly ["system", "light", "dark"];
153
+ type AppearanceDefault = (typeof APPEARANCE_DEFAULTS)[number];
154
+ interface AppearanceConfig {
155
+ default: AppearanceDefault;
156
+ strict: boolean;
157
+ }
158
+ interface IntegrationsConfig {
159
+ openapi: string[];
160
+ asyncapi: string[];
161
+ mermaid: boolean;
162
+ math: boolean;
163
+ }
164
+ interface SearchConfig {
165
+ enabled: boolean;
166
+ hotkey: string;
167
+ }
168
+ interface SidebarConfig {
169
+ defaultOpenLevel: number;
170
+ }
171
+ interface NavLink {
172
+ label: string;
173
+ href: string;
174
+ external: boolean;
175
+ }
176
+ interface NavConfig {
177
+ title?: string;
178
+ links: NavLink[];
179
+ }
180
+ interface PressConfig {
181
+ contactEmail?: string;
182
+ sort: 'date-desc' | 'date-asc';
183
+ }
184
+ interface RobotsConfig {
185
+ content?: string;
186
+ }
187
+ interface RssConfig {
188
+ collections: string[];
189
+ }
190
+ interface LlmsConfig {
191
+ enabled: boolean;
192
+ full: boolean;
193
+ collections: string[];
194
+ }
195
+ interface LogoConfig {
196
+ light?: string;
197
+ dark?: string;
198
+ }
199
+ interface SiteConfig {
200
+ name: string;
201
+ url?: string;
202
+ description?: string;
203
+ logo?: LogoConfig;
204
+ favicon?: string;
205
+ footer?: string;
206
+ serviceWorker: boolean;
207
+ }
208
+ interface FontConfig {
209
+ family: string;
210
+ googleFontsUrl?: string;
211
+ src?: string;
212
+ weight?: string;
213
+ style?: string;
214
+ }
215
+ interface FontsConfig {
216
+ heading?: FontConfig;
217
+ body?: FontConfig;
218
+ mono?: FontConfig;
219
+ }
220
+ interface PublierConfig {
221
+ site: SiteConfig;
222
+ nav: NavConfig;
223
+ sidebar: SidebarConfig;
224
+ search: SearchConfig;
225
+ theme: string;
226
+ content: {
227
+ dir: string;
228
+ };
229
+ pages: PagesToggleMap;
230
+ press: PressConfig;
231
+ appearance: AppearanceConfig;
232
+ integrations: IntegrationsConfig;
233
+ snippetDir: string;
234
+ customCss: string[];
235
+ robots: RobotsConfig;
236
+ rss: RssConfig;
237
+ llms: LlmsConfig;
238
+ vars?: Record<string, string>;
239
+ fonts?: FontsConfig;
240
+ analytics?: AnalyticsProvider;
241
+ }
242
+ type ConfigErrorCode = 'missing-required' | 'unknown-key' | 'unknown-value' | 'invalid-value' | 'wrong-type' | 'invalid-enum' | 'invalid-email';
243
+ interface ConfigValidationError {
244
+ code: ConfigErrorCode;
245
+ path: string;
246
+ message: string;
247
+ }
248
+ declare function resolvePublierConfig(input: unknown): {
249
+ config: PublierConfig;
250
+ errors: ConfigValidationError[];
251
+ };
252
+ declare function shouldRenderPage(page: ToggleablePage, pages: PagesToggleMap, defaultForTemplate: boolean): boolean;
253
+ //#endregion
254
+ //#region ts/core/robots.d.ts
255
+ interface RobotsOptions {
256
+ siteUrl?: string;
257
+ content?: string;
258
+ }
259
+ declare function generateRobotsTxt(options?: RobotsOptions): string;
260
+ //#endregion
261
+ //#region ts/core/rss.d.ts
262
+ declare function filterPublishedPages(pages: Page[]): Page[];
263
+ interface RssFeedConfig {
264
+ title: string;
265
+ description: string;
266
+ siteUrl: string;
267
+ feedUrl: string;
268
+ language?: string;
269
+ buildDate?: Date;
270
+ }
271
+ declare function generateRssFeed(pages: Page[], config: RssFeedConfig): string;
272
+ //#endregion
273
+ //#region ts/core/skill.d.ts
274
+ interface SkillPage {
275
+ title: string;
276
+ path: string;
277
+ description?: string;
278
+ }
279
+ interface SkillMdOptions {
280
+ siteTitle: string;
281
+ siteDescription: string;
282
+ siteUrl: string;
283
+ pages?: SkillPage[];
284
+ apiBaseUrl?: string;
285
+ supportUrl?: string;
286
+ }
287
+ declare function generateSkillMd(options: SkillMdOptions): string;
288
+ //#endregion
289
+ //#region ts/core/slug.d.ts
290
+ declare function getSlug(filePath: string, baseDir: string): string;
291
+ declare namespace index_d_exports {
292
+ export { NativeHeadStats, NativePreloadStats, NativeTailwindResolvedTheme, NativeTailwindThemeError, analyticsGenerateBodyScripts$1 as analyticsGenerateBodyScripts, analyticsGenerateScripts$1 as analyticsGenerateScripts, asyncapiSourceBuild$1 as asyncapiSourceBuild, blogFilterByTag$1 as blogFilterByTag, blogFilterPublished$1 as blogFilterPublished, blogReadingTime$1 as blogReadingTime, blogSortByDate$1 as blogSortByDate, blogTagCounts$1 as blogTagCounts, buildHook$1 as buildHook, configResolvePublierConfig$1 as configResolvePublierConfig, configShouldRenderPage$1 as configShouldRenderPage, contentGenerateLlmsTxt$1 as contentGenerateLlmsTxt, contentGenerateOgImageMarkup$1 as contentGenerateOgImageMarkup, contentGenerateRobotsTxt$1 as contentGenerateRobotsTxt, contentGenerateSkillMd$1 as contentGenerateSkillMd, contentGenerateTwitterMeta$1 as contentGenerateTwitterMeta, contentGetSlug$1 as contentGetSlug, navigationActiveIndex$1 as navigationActiveIndex, navigationBuildSidebar$1 as navigationBuildSidebar, navigationMatchNavPath$1 as navigationMatchNavPath, openapiBuildCustomSampleMap$1 as openapiBuildCustomSampleMap, openapiBuildInstanceId$1 as openapiBuildInstanceId, openapiDecodePlaceholders$1 as openapiDecodePlaceholders, openapiExtractEndpoints$1 as openapiExtractEndpoints, openapiGenerateFiles$1 as openapiGenerateFiles, openapiGetMediaTypeExample$1 as openapiGetMediaTypeExample, openapiGetSnippetClient$1 as openapiGetSnippetClient, openapiHarFromOperation$1 as openapiHarFromOperation, openapiMergeSpecs$1 as openapiMergeSpecs, openapiNavigationBuild$1 as openapiNavigationBuild, openapiParseAsyncApiSpec$1 as openapiParseAsyncApiSpec, openapiParseOpenapiSpec$1 as openapiParseOpenapiSpec, openapiRenderApiPage$1 as openapiRenderApiPage, openapiRenderApiPlayground$1 as openapiRenderApiPlayground, openapiRenderApiReference$1 as openapiRenderApiReference, openapiRenderApiReferenceShell$1 as openapiRenderApiReferenceShell, openapiRenderAsyncChannel$1 as openapiRenderAsyncChannel, openapiRenderAsyncMessage$1 as openapiRenderAsyncMessage, openapiRenderCodeSamples$1 as openapiRenderCodeSamples, openapiRenderCollapsibleSection$1 as openapiRenderCollapsibleSection, openapiRenderMethodBadge$1 as openapiRenderMethodBadge, openapiRenderParamField$1 as openapiRenderParamField, openapiRenderRequestExample$1 as openapiRenderRequestExample, openapiRenderResponseExample$1 as openapiRenderResponseExample, openapiRenderResponseField$1 as openapiRenderResponseField, openapiRenderSchemaRow$1 as openapiRenderSchemaRow, openapiRenderSchemaView$1 as openapiRenderSchemaView, openapiResolveBaseUrl$1 as openapiResolveBaseUrl, openapiResolveRefs$1 as openapiResolveRefs, openapiSourceBuild$1 as openapiSourceBuild, pluginHook$1 as pluginHook, primitivesColorSwatchScript$1 as primitivesColorSwatchScript, primitivesColorSwatchStyle$1 as primitivesColorSwatchStyle, primitivesCopyButtonScript$1 as primitivesCopyButtonScript, primitivesCopyButtonStyle$1 as primitivesCopyButtonStyle, primitivesImageZoomScript$1 as primitivesImageZoomScript, primitivesRenderAccordion$1 as primitivesRenderAccordion, primitivesRenderAccordionItem$1 as primitivesRenderAccordionItem, primitivesRenderColorSwatch$1 as primitivesRenderColorSwatch, primitivesRenderCopyButton$1 as primitivesRenderCopyButton, primitivesRenderImageZoom$1 as primitivesRenderImageZoom, primitivesRenderTabPanel$1 as primitivesRenderTabPanel, primitivesRenderTabs$1 as primitivesRenderTabs, primitivesRenderTooltip$1 as primitivesRenderTooltip, primitivesRenderViewAnimation$1 as primitivesRenderViewAnimation, primitivesTabsScript$1 as primitivesTabsScript, primitivesViewAnimationScript$1 as primitivesViewAnimationScript, primitivesViewAnimationStyle$1 as primitivesViewAnimationStyle, remarkCollectSections$1 as remarkCollectSections, remarkResolveSnippet$1 as remarkResolveSnippet, remarkTransformAsides$1 as remarkTransformAsides, remarkVarsSubstitute$1 as remarkVarsSubstitute, rssGenerateFeed$1 as rssGenerateFeed, searchEntryToPage$1 as searchEntryToPage, searchExtractStructuredData$1 as searchExtractStructuredData, searchReadMetaYaml$1 as searchReadMetaYaml, shellAnnouncementBannerScript$1 as shellAnnouncementBannerScript, shellBuildBannerInitScript$1 as shellBuildBannerInitScript, shellBuildGlobPattern$1 as shellBuildGlobPattern, shellBuildHeaders$1 as shellBuildHeaders, shellBuildLicenseErrorMessage$1 as shellBuildLicenseErrorMessage, shellBuildThemeInitScript$1 as shellBuildThemeInitScript, shellCacheControl$1 as shellCacheControl, shellCollectTailwindClassTokens$1 as shellCollectTailwindClassTokens, shellComposeTailwindEntry$1 as shellComposeTailwindEntry, shellExtractAnalyticsFromYaml$1 as shellExtractAnalyticsFromYaml, shellExtractAnnouncementFromYaml$1 as shellExtractAnnouncementFromYaml, shellExtractDocsConfigFromYaml$1 as shellExtractDocsConfigFromYaml, shellExtractFontsFromYaml$1 as shellExtractFontsFromYaml, shellExtractNavFromYaml$1 as shellExtractNavFromYaml, shellExtractSiteFromYaml$1 as shellExtractSiteFromYaml, shellExtractSnippetsFromYaml$1 as shellExtractSnippetsFromYaml, shellExtractVarsFromYaml$1 as shellExtractVarsFromYaml, shellGenerateId$1 as shellGenerateId, shellLazyUpgradeScript$1 as shellLazyUpgradeScript, shellListThemes$1 as shellListThemes, shellNavActiveUpdateScript$1 as shellNavActiveUpdateScript, shellOpenInAiScript$1 as shellOpenInAiScript, shellPlanDefaultRoutes$1 as shellPlanDefaultRoutes, shellPlanDocsSlug$1 as shellPlanDocsSlug, shellPlanRehypePlugins$1 as shellPlanRehypePlugins, shellPlanRemarkPlugins$1 as shellPlanRemarkPlugins, shellRenderAnnouncementBanner$1 as shellRenderAnnouncementBanner, shellRenderAside$1 as shellRenderAside, shellRenderBadge$1 as shellRenderBadge, shellRenderBaseLayout$1 as shellRenderBaseLayout, shellRenderBlogIndex$1 as shellRenderBlogIndex, shellRenderBlogSlug$1 as shellRenderBlogSlug, shellRenderBreadcrumbs$1 as shellRenderBreadcrumbs, shellRenderCard$1 as shellRenderCard, shellRenderCardGrid$1 as shellRenderCardGrid, shellRenderChangelogEntry$1 as shellRenderChangelogEntry, shellRenderChangelogFooter$1 as shellRenderChangelogFooter, shellRenderChangelogHeader$1 as shellRenderChangelogHeader, shellRenderCodeGroup$1 as shellRenderCodeGroup, shellRenderColumns$1 as shellRenderColumns, shellRenderDocsLayout$1 as shellRenderDocsLayout, shellRenderDocsSlug$1 as shellRenderDocsSlug, shellRenderFileTree$1 as shellRenderFileTree, shellRenderFileTreeNode$1 as shellRenderFileTreeNode, shellRenderIcon$1 as shellRenderIcon, shellRenderLastModified$1 as shellRenderLastModified, shellRenderLinkButton$1 as shellRenderLinkButton, shellRenderLinkCard$1 as shellRenderLinkCard, shellRenderNotFound$1 as shellRenderNotFound, shellRenderOpenInAi$1 as shellRenderOpenInAi, shellRenderPackageInstall$1 as shellRenderPackageInstall, shellRenderPanels$1 as shellRenderPanels, shellRenderSearchButton$1 as shellRenderSearchButton, shellRenderSidebar$1 as shellRenderSidebar, shellRenderSkipLink$1 as shellRenderSkipLink, shellRenderSteps$1 as shellRenderSteps, shellRenderTableOfContents$1 as shellRenderTableOfContents, shellRenderTabs$1 as shellRenderTabs, shellRenderThemeToggle$1 as shellRenderThemeToggle, shellRenderTile$1 as shellRenderTile, shellRenderTileGrid$1 as shellRenderTileGrid, shellRenderTopNav$1 as shellRenderTopNav, shellRenderTopNavMobile$1 as shellRenderTopNavMobile, shellRenderUpdateBadge$1 as shellRenderUpdateBadge, shellRenderVersionSwitcher$1 as shellRenderVersionSwitcher, shellResolvePrefetch$1 as shellResolvePrefetch, shellResolveSnippetsConfig$1 as shellResolveSnippetsConfig, shellRewriteHead$1 as shellRewriteHead, shellRewriteModulepreload$1 as shellRewriteModulepreload, shellSearchButtonScript$1 as shellSearchButtonScript, shellSearchDialogCss$1 as shellSearchDialogCss, shellSearchDialogInnerHtml$1 as shellSearchDialogInnerHtml, shellSearchDialogScript$1 as shellSearchDialogScript, shellSidebarHeightInitScript$1 as shellSidebarHeightInitScript, shellSidebarScrollInitScript$1 as shellSidebarScrollInitScript, shellTableOfContentsScript$1 as shellTableOfContentsScript, tailwindComposeThemeCss$1 as tailwindComposeThemeCss, tailwindReadPresetCss$1 as tailwindReadPresetCss, tailwindResolveTheme$1 as tailwindResolveTheme, verifyLicense$1 as verifyLicense };
293
+ }
294
+ declare function analyticsGenerateBodyScripts$1(analyticsJson: string): string;
295
+ declare function analyticsGenerateScripts$1(analyticsJson: string): string;
296
+ declare function asyncapiSourceBuild$1(specJson: string, baseUrl: string): string;
297
+ declare function blogFilterByTag$1(pagesJson: string, tag: string): string;
298
+ declare function blogFilterPublished$1(pagesJson: string): string;
299
+ declare function blogReadingTime$1(structuredJson: string): number;
300
+ declare function blogSortByDate$1(pagesJson: string): string;
301
+ declare function blogTagCounts$1(pagesJson: string): string;
302
+ declare function buildHook$1(event: string, argsJson: string): string | null;
303
+ declare function configResolvePublierConfig$1(inputJson: string): string;
304
+ declare function configShouldRenderPage$1(page: string, pagesJson: string, defaultForTemplate: boolean): boolean;
305
+ declare function contentGenerateLlmsTxt$1(optionsJson: string): string;
306
+ declare function contentGenerateOgImageMarkup$1(optionsJson: string): string;
307
+ declare function contentGenerateRobotsTxt$1(optionsJson: string): string;
308
+ declare function contentGenerateSkillMd$1(optionsJson: string): string;
309
+ declare function contentGenerateTwitterMeta$1(optionsJson: string): string;
310
+ declare function contentGetSlug$1(filePath: string, baseDir: string): string;
311
+ interface NativeHeadStats {
312
+ stylesheetsCount: number;
313
+ modulesCount: number;
314
+ pagesRewritten: number;
315
+ stylesheets: Array<string>;
316
+ modules: Array<string>;
317
+ }
318
+ interface NativePreloadStats {
319
+ jsCount: number;
320
+ fontsCount: number;
321
+ pagesRewritten: number;
322
+ }
323
+ interface NativeTailwindResolvedTheme {
324
+ preset?: string;
325
+ overrides: Record<string, string>;
326
+ overrideCss: string;
327
+ errors: Array<NativeTailwindThemeError>;
328
+ }
329
+ interface NativeTailwindThemeError {
330
+ code: string;
331
+ message: string;
332
+ path: string;
333
+ }
334
+ declare function navigationActiveIndex$1(entriesJson: string, currentPath: string): number;
335
+ declare function navigationBuildSidebar$1(pagesJson: string, optionsJson: string): string;
336
+ declare function navigationMatchNavPath$1(pathRulesJson: string, pathname: string): string;
337
+ declare function openapiBuildCustomSampleMap$1(customSamplesJson: string): string;
338
+ declare function openapiBuildInstanceId$1(method: string, path: string): string;
339
+ declare function openapiDecodePlaceholders$1(source: string): string;
340
+ declare function openapiExtractEndpoints$1(specJson: string, mergePathParameters: boolean, includeWebhooks: boolean): string;
341
+ declare function openapiGenerateFiles$1(specJson: string, outputDir: string, groupBy: string, per: string, clean: boolean): string;
342
+ declare function openapiGetMediaTypeExample$1(contentJson: string, mediaType: string): string | null;
343
+ declare function openapiGetSnippetClient$1(lang: string): Array<string> | null;
344
+ declare function openapiHarFromOperation$1(method: string, path: string, operationJson: string, baseUrl: string): string;
345
+ declare function openapiMergeSpecs$1(specsJson: string): string;
346
+ declare function openapiNavigationBuild$1(specJson: string, groupBy: string, slugPrefix: string | undefined | null, excludeDeprecated: boolean, includeWebhooks: boolean): string;
347
+ declare function openapiParseAsyncApiSpec$1(jsonInput: string): string;
348
+ declare function openapiParseOpenapiSpec$1(jsonInput: string): string;
349
+ declare function openapiRenderApiPage$1(method: string, path: string, operationJson: string): string;
350
+ declare function openapiRenderApiPlayground$1(inputJson: string): string;
351
+ declare function openapiRenderApiReference$1(apiPageHtml: string, requestExampleHtml: string, codeSamplesHtml: string, responseExampleHtml: string): string;
352
+ declare function openapiRenderApiReferenceShell$1(): string;
353
+ declare function openapiRenderAsyncChannel$1(channelName: string, channelJson: string, operationsJson: string, protocol: string): string;
354
+ declare function openapiRenderAsyncMessage$1(messageJson: string): string;
355
+ declare function openapiRenderCodeSamples$1(method: string, path: string, samplesJson: string): string;
356
+ declare function openapiRenderCollapsibleSection$1(title: string, defaultOpen: boolean, slotHtml: string): string;
357
+ declare function openapiRenderMethodBadge$1(method: string): string;
358
+ declare function openapiRenderParamField$1(name: string, typeStr: string, required: boolean, deprecated: boolean, defaultValue: string | undefined | null, placeholder: string | undefined | null, slotHtml: string): string;
359
+ declare function openapiRenderRequestExample$1(method: string, path: string, operationJson: string, baseUrl: string, bodyExample?: string | undefined | null): string;
360
+ declare function openapiRenderResponseExample$1(tabsJson: string, instanceId?: string | undefined | null): string;
361
+ declare function openapiRenderResponseField$1(name: string, typeStr: string, required: boolean, deprecated: boolean, slotHtml: string): string;
362
+ declare function openapiRenderSchemaRow$1(inputJson: string): string;
363
+ declare function openapiRenderSchemaView$1(schemaJson: string, name: string | undefined | null, required: boolean, depth: number): string;
364
+ declare function openapiResolveBaseUrl$1(baseUrlProp?: string | undefined | null, specServersFirstUrl?: string | undefined | null): string;
365
+ declare function openapiResolveRefs$1(specJson: string): string;
366
+ declare function openapiSourceBuild$1(specJson: string, baseUrl: string): string;
367
+ declare function pluginHook$1(plugin: string, hook: string, argsJson: string): string | null;
368
+ declare function primitivesColorSwatchScript$1(): string;
369
+ declare function primitivesColorSwatchStyle$1(): string;
370
+ declare function primitivesCopyButtonScript$1(): string;
371
+ declare function primitivesCopyButtonStyle$1(): string;
372
+ declare function primitivesImageZoomScript$1(): string;
373
+ declare function primitivesRenderAccordion$1(className: string | undefined | null, slotHtml: string): string;
374
+ declare function primitivesRenderAccordionItem$1(title: string, open: boolean, name: string | undefined | null, slotHtml: string): string;
375
+ declare function primitivesRenderColorSwatch$1(inputJson: string): string;
376
+ declare function primitivesRenderCopyButton$1(selector: string | undefined | null, text: string | undefined | null, floating: boolean, className?: string | undefined | null, label?: string | undefined | null): string;
377
+ declare function primitivesRenderImageZoom$1(src: string, alt: string, width?: number | undefined | null, height?: number | undefined | null, customClass?: string | undefined | null): string;
378
+ declare function primitivesRenderTabPanel$1(className: string | undefined | null, slotHtml: string): string;
379
+ declare function primitivesRenderTabs$1(labels: Array<string>, defaultIndex: number, variant: string | undefined | null, className: string | undefined | null, slotHtml: string, id: string): string;
380
+ declare function primitivesRenderTooltip$1(tip: string, position: string, color: string | undefined | null, open: boolean, className: string | undefined | null, slotHtml: string): string;
381
+ declare function primitivesRenderViewAnimation$1(slotHtml: string, customClass: string | undefined | null, delayMs: number, once: boolean): string;
382
+ declare function primitivesTabsScript$1(): string;
383
+ declare function primitivesViewAnimationScript$1(): string;
384
+ declare function primitivesViewAnimationStyle$1(): string;
385
+ declare function remarkCollectSections$1(treeJson: string): string;
386
+ declare function remarkResolveSnippet$1(snippetDir: string, fileName: string, attrsJson: string): string | null;
387
+ declare function remarkTransformAsides$1(treeJson: string): string;
388
+ declare function remarkVarsSubstitute$1(treeJson: string, varsJson: string): string;
389
+ declare function rssGenerateFeed$1(pagesJson: string, configJson: string): string;
390
+ declare function searchEntryToPage$1(entryJson: string, optionsJson: string): string;
391
+ declare function searchExtractStructuredData$1(source: string): string;
392
+ declare function searchReadMetaYaml$1(basePath: string): string;
393
+ declare function shellAnnouncementBannerScript$1(): string;
394
+ declare function shellBuildBannerInitScript$1(storageKey?: string | undefined | null): string;
395
+ declare function shellBuildGlobPattern$1(collection: string): Array<string>;
396
+ declare function shellBuildHeaders$1(): string;
397
+ declare function shellBuildLicenseErrorMessage$1(rawErr: string): string | null;
398
+ declare function shellBuildThemeInitScript$1(defaultScheme: string, strict: boolean): string;
399
+ declare function shellCacheControl$1(path: string): string;
400
+ declare function shellCollectTailwindClassTokens$1(): string;
401
+ declare function shellComposeTailwindEntry$1(sourceDirsJson: string, katexCssPath?: string | undefined | null): string;
402
+ declare function shellExtractAnalyticsFromYaml$1(yaml: string): string | null;
403
+ declare function shellExtractAnnouncementFromYaml$1(yaml: string): string | null;
404
+ declare function shellExtractDocsConfigFromYaml$1(yaml: string): string;
405
+ declare function shellExtractFontsFromYaml$1(yaml: string): string | null;
406
+ declare function shellExtractNavFromYaml$1(yaml: string): string;
407
+ declare function shellExtractSiteFromYaml$1(yaml: string): string;
408
+ declare function shellExtractSnippetsFromYaml$1(yaml: string): string | null;
409
+ declare function shellExtractVarsFromYaml$1(yaml: string): string | null;
410
+ declare function shellGenerateId$1(entry: string): string;
411
+ declare function shellLazyUpgradeScript$1(): string;
412
+ declare function shellListThemes$1(): string;
413
+ declare function shellNavActiveUpdateScript$1(): string;
414
+ declare function shellOpenInAiScript$1(): string;
415
+ declare function shellPlanDefaultRoutes$1(optionsJson: string, hasSiteUrl: boolean, collectionsPresentJson: string): string;
416
+ declare function shellPlanDocsSlug$1(inputJson: string): string;
417
+ declare function shellPlanRehypePlugins$1(optionsJson: string, mathEnabled: boolean): string;
418
+ declare function shellPlanRemarkPlugins$1(optionsJson: string, hasVars: boolean, hasSnippets: boolean, mathEnabled: boolean): string;
419
+ declare function shellRenderAnnouncementBanner$1(message: string, href: string | undefined | null, variant: string, dismissible: boolean, storageKey: string): string;
420
+ declare function shellRenderAside$1(asideType: string, title: string | undefined | null, slotHtml: string, titleId: string): string;
421
+ declare function shellRenderBadge$1(text: string, variant?: string | undefined | null, size?: string | undefined | null, className?: string | undefined | null): string;
422
+ declare function shellRenderBaseLayout$1(inputJson: string): string;
423
+ declare function shellRenderBlogIndex$1(inputJson: string): string;
424
+ declare function shellRenderBlogSlug$1(inputJson: string): string;
425
+ declare function shellRenderBreadcrumbs$1(itemsJson: string, label?: string | undefined | null, customClass?: string | undefined | null): string;
426
+ declare function shellRenderCard$1(title: string, variant: string, customClass: string | undefined | null, iconSlotHtml: string | undefined | null, slotHtml: string): string;
427
+ declare function shellRenderCardGrid$1(minColumnWidth: string, customClass: string | undefined | null, slotHtml: string): string;
428
+ declare function shellRenderChangelogEntry$1(inputJson: string): string;
429
+ declare function shellRenderChangelogFooter$1(): string;
430
+ declare function shellRenderChangelogHeader$1(): string;
431
+ declare function shellRenderCodeGroup$1(itemsJson: string, syncKey: string | undefined | null, id: string): string;
432
+ declare function shellRenderColumns$1(cols: number | undefined | null, gap: string | undefined | null, className: string | undefined | null, slotHtml: string): string;
433
+ declare function shellRenderDocsLayout$1(inputJson: string): string;
434
+ declare function shellRenderDocsSlug$1(inputJson: string): string;
435
+ declare function shellRenderFileTree$1(treeJson: string, label: string, customClass?: string | undefined | null): string;
436
+ declare function shellRenderFileTreeNode$1(entryJson: string): string;
437
+ declare function shellRenderIcon$1(innerHtml: string, fill: boolean, viewBox: string | undefined | null, strokeWidth: number | undefined | null, size: number, className?: string | undefined | null): string;
438
+ declare function shellRenderLastModified$1(dateMs: number | undefined | null, nowMs: number, format: string): string;
439
+ declare function shellRenderLinkButton$1(href: string, variant: string | undefined | null, iconPlacement: string | undefined | null, rel: string | undefined | null, target: string | undefined | null, className: string | undefined | null, slotHtml: string): string;
440
+ declare function shellRenderLinkCard$1(title: string, href: string, description?: string | undefined | null, rel?: string | undefined | null, target?: string | undefined | null, customClass?: string | undefined | null): string;
441
+ declare function shellRenderNotFound$1(): string;
442
+ declare function shellRenderOpenInAi$1(pageUrl: string, pageTitle: string): string;
443
+ declare function shellRenderPackageInstall$1(inputJson: string): string;
444
+ declare function shellRenderPanels$1(inputJson: string): string;
445
+ declare function shellRenderSearchButton$1(inputJson: string): string;
446
+ declare function shellRenderSidebar$1(inputJson: string): string;
447
+ declare function shellRenderSkipLink$1(inputJson: string): string;
448
+ declare function shellRenderSteps$1(inputJson: string): string;
449
+ declare function shellRenderTableOfContents$1(inputJson: string): string;
450
+ declare function shellRenderTabs$1(labelsJson: string, panelsJson: string, defaultIndex: number, syncKey: string | undefined | null, id: string, extraClass?: string | undefined | null): string;
451
+ declare function shellRenderThemeToggle$1(inputJson: string): string;
452
+ declare function shellRenderTile$1(inputJson: string): string;
453
+ declare function shellRenderTileGrid$1(inputJson: string): string;
454
+ declare function shellRenderTopNav$1(inputJson: string): string;
455
+ declare function shellRenderTopNavMobile$1(inputJson: string): string;
456
+ declare function shellRenderUpdateBadge$1(inputJson: string): string;
457
+ declare function shellRenderVersionSwitcher$1(inputJson: string): string;
458
+ declare function shellResolvePrefetch$1(userPrefetchJson: string | undefined | null, optionsJson: string): boolean;
459
+ declare function shellResolveSnippetsConfig$1(optionsJson: string, yamlSnippetsJson: string | undefined | null, autoDetectPresent: boolean): string;
460
+ declare function shellRewriteHead$1(distDir: string, pathnames: Array<string>): NativeHeadStats;
461
+ declare function shellRewriteModulepreload$1(distDir: string, pathnames: Array<string>): NativePreloadStats;
462
+ declare function shellSearchButtonScript$1(): string;
463
+ declare function shellSearchDialogCss$1(): string;
464
+ declare function shellSearchDialogInnerHtml$1(): string;
465
+ declare function shellSearchDialogScript$1(): string;
466
+ declare function shellSidebarHeightInitScript$1(): string;
467
+ declare function shellSidebarScrollInitScript$1(): string;
468
+ declare function shellTableOfContentsScript$1(): string;
469
+ declare function tailwindComposeThemeCss$1(presetCss: string, overrideCss: string): string;
470
+ declare function tailwindReadPresetCss$1(themesDir: string, name: string): string;
471
+ declare function tailwindResolveTheme$1(json: string): NativeTailwindResolvedTheme;
472
+ declare function verifyLicense$1(): void;
473
+ //#endregion
474
+ //#region ts/_binding.d.ts
475
+ declare const native: typeof index_d_exports;
476
+ //#endregion
477
+ //#region ts/index.d.ts
478
+ declare const analyticsGenerateBodyScripts: typeof analyticsGenerateBodyScripts$1;
479
+ declare const analyticsGenerateScripts: typeof analyticsGenerateScripts$1;
480
+ declare const asyncapiSourceBuild: typeof asyncapiSourceBuild$1;
481
+ declare const blogFilterByTag: typeof blogFilterByTag$1;
482
+ declare const blogFilterPublished: typeof blogFilterPublished$1;
483
+ declare const blogReadingTime: typeof blogReadingTime$1;
484
+ declare const blogSortByDate: typeof blogSortByDate$1;
485
+ declare const blogTagCounts: typeof blogTagCounts$1;
486
+ declare const buildHook: typeof buildHook$1;
487
+ declare const configResolvePublierConfig: typeof configResolvePublierConfig$1;
488
+ declare const configShouldRenderPage: typeof configShouldRenderPage$1;
489
+ declare const contentGenerateLlmsTxt: typeof contentGenerateLlmsTxt$1;
490
+ declare const contentGenerateOgImageMarkup: typeof contentGenerateOgImageMarkup$1;
491
+ declare const contentGenerateRobotsTxt: typeof contentGenerateRobotsTxt$1;
492
+ declare const contentGenerateSkillMd: typeof contentGenerateSkillMd$1;
493
+ declare const contentGenerateTwitterMeta: typeof contentGenerateTwitterMeta$1;
494
+ declare const contentGetSlug: typeof contentGetSlug$1;
495
+ declare const navigationActiveIndex: typeof navigationActiveIndex$1;
496
+ declare const navigationBuildSidebar: typeof navigationBuildSidebar$1;
497
+ declare const navigationMatchNavPath: typeof navigationMatchNavPath$1;
498
+ declare const openapiBuildCustomSampleMap: typeof openapiBuildCustomSampleMap$1;
499
+ declare const openapiBuildInstanceId: typeof openapiBuildInstanceId$1;
500
+ declare const openapiDecodePlaceholders: typeof openapiDecodePlaceholders$1;
501
+ declare const openapiExtractEndpoints: typeof openapiExtractEndpoints$1;
502
+ declare const openapiGenerateFiles: typeof openapiGenerateFiles$1;
503
+ declare const openapiGetMediaTypeExample: typeof openapiGetMediaTypeExample$1;
504
+ declare const openapiGetSnippetClient: typeof openapiGetSnippetClient$1;
505
+ declare const openapiHarFromOperation: typeof openapiHarFromOperation$1;
506
+ declare const openapiMergeSpecs: typeof openapiMergeSpecs$1;
507
+ declare const openapiNavigationBuild: typeof openapiNavigationBuild$1;
508
+ declare const openapiParseAsyncApiSpec: typeof openapiParseAsyncApiSpec$1;
509
+ declare const openapiParseOpenapiSpec: typeof openapiParseOpenapiSpec$1;
510
+ declare const openapiRenderApiPage: typeof openapiRenderApiPage$1;
511
+ declare const openapiRenderApiPlayground: typeof openapiRenderApiPlayground$1;
512
+ declare const openapiRenderApiReference: typeof openapiRenderApiReference$1;
513
+ declare const openapiRenderApiReferenceShell: typeof openapiRenderApiReferenceShell$1;
514
+ declare const openapiRenderAsyncChannel: typeof openapiRenderAsyncChannel$1;
515
+ declare const openapiRenderAsyncMessage: typeof openapiRenderAsyncMessage$1;
516
+ declare const openapiRenderCodeSamples: typeof openapiRenderCodeSamples$1;
517
+ declare const openapiRenderCollapsibleSection: typeof openapiRenderCollapsibleSection$1;
518
+ declare const openapiRenderMethodBadge: typeof openapiRenderMethodBadge$1;
519
+ declare const openapiRenderParamField: typeof openapiRenderParamField$1;
520
+ declare const openapiRenderRequestExample: typeof openapiRenderRequestExample$1;
521
+ declare const openapiRenderResponseExample: typeof openapiRenderResponseExample$1;
522
+ declare const openapiRenderResponseField: typeof openapiRenderResponseField$1;
523
+ declare const openapiRenderSchemaRow: typeof openapiRenderSchemaRow$1;
524
+ declare const openapiRenderSchemaView: typeof openapiRenderSchemaView$1;
525
+ declare const openapiResolveBaseUrl: typeof openapiResolveBaseUrl$1;
526
+ declare const openapiResolveRefs: typeof openapiResolveRefs$1;
527
+ declare const openapiSourceBuild: typeof openapiSourceBuild$1;
528
+ declare const pluginHook: typeof pluginHook$1;
529
+ declare const primitivesColorSwatchScript: typeof primitivesColorSwatchScript$1;
530
+ declare const primitivesColorSwatchStyle: typeof primitivesColorSwatchStyle$1;
531
+ declare const primitivesCopyButtonScript: typeof primitivesCopyButtonScript$1;
532
+ declare const primitivesCopyButtonStyle: typeof primitivesCopyButtonStyle$1;
533
+ declare const primitivesImageZoomScript: typeof primitivesImageZoomScript$1;
534
+ declare const primitivesRenderAccordion: typeof primitivesRenderAccordion$1;
535
+ declare const primitivesRenderAccordionItem: typeof primitivesRenderAccordionItem$1;
536
+ declare const primitivesRenderColorSwatch: typeof primitivesRenderColorSwatch$1;
537
+ declare const primitivesRenderCopyButton: typeof primitivesRenderCopyButton$1;
538
+ declare const primitivesRenderImageZoom: typeof primitivesRenderImageZoom$1;
539
+ declare const primitivesRenderTabPanel: typeof primitivesRenderTabPanel$1;
540
+ declare const primitivesRenderTabs: typeof primitivesRenderTabs$1;
541
+ declare const primitivesRenderTooltip: typeof primitivesRenderTooltip$1;
542
+ declare const primitivesRenderViewAnimation: typeof primitivesRenderViewAnimation$1;
543
+ declare const primitivesTabsScript: typeof primitivesTabsScript$1;
544
+ declare const primitivesViewAnimationScript: typeof primitivesViewAnimationScript$1;
545
+ declare const primitivesViewAnimationStyle: typeof primitivesViewAnimationStyle$1;
546
+ declare const remarkCollectSections: typeof remarkCollectSections$1;
547
+ declare const remarkResolveSnippet: typeof remarkResolveSnippet$1;
548
+ declare const remarkTransformAsides: typeof remarkTransformAsides$1;
549
+ declare const remarkVarsSubstitute: typeof remarkVarsSubstitute$1;
550
+ declare const rssGenerateFeed: typeof rssGenerateFeed$1;
551
+ declare const searchEntryToPage: typeof searchEntryToPage$1;
552
+ declare const searchExtractStructuredData: typeof searchExtractStructuredData$1;
553
+ declare const searchReadMetaYaml: typeof searchReadMetaYaml$1;
554
+ declare const shellAnnouncementBannerScript: typeof shellAnnouncementBannerScript$1;
555
+ declare const shellBuildBannerInitScript: typeof shellBuildBannerInitScript$1;
556
+ declare const shellBuildGlobPattern: typeof shellBuildGlobPattern$1;
557
+ declare const shellBuildHeaders: typeof shellBuildHeaders$1;
558
+ declare const shellBuildLicenseErrorMessage: typeof shellBuildLicenseErrorMessage$1;
559
+ declare const shellBuildThemeInitScript: typeof shellBuildThemeInitScript$1;
560
+ declare const shellCacheControl: typeof shellCacheControl$1;
561
+ declare const shellCollectTailwindClassTokens: typeof shellCollectTailwindClassTokens$1;
562
+ declare const shellComposeTailwindEntry: typeof shellComposeTailwindEntry$1;
563
+ declare const shellExtractAnalyticsFromYaml: typeof shellExtractAnalyticsFromYaml$1;
564
+ declare const shellExtractAnnouncementFromYaml: typeof shellExtractAnnouncementFromYaml$1;
565
+ declare const shellExtractDocsConfigFromYaml: typeof shellExtractDocsConfigFromYaml$1;
566
+ declare const shellExtractFontsFromYaml: typeof shellExtractFontsFromYaml$1;
567
+ declare const shellExtractNavFromYaml: typeof shellExtractNavFromYaml$1;
568
+ declare const shellExtractSiteFromYaml: typeof shellExtractSiteFromYaml$1;
569
+ declare const shellExtractSnippetsFromYaml: typeof shellExtractSnippetsFromYaml$1;
570
+ declare const shellExtractVarsFromYaml: typeof shellExtractVarsFromYaml$1;
571
+ declare const shellGenerateId: typeof shellGenerateId$1;
572
+ declare const shellLazyUpgradeScript: typeof shellLazyUpgradeScript$1;
573
+ declare const shellListThemes: typeof shellListThemes$1;
574
+ declare const shellNavActiveUpdateScript: typeof shellNavActiveUpdateScript$1;
575
+ declare const shellOpenInAiScript: typeof shellOpenInAiScript$1;
576
+ declare const shellPlanDefaultRoutes: typeof shellPlanDefaultRoutes$1;
577
+ declare const shellPlanDocsSlug: typeof shellPlanDocsSlug$1;
578
+ declare const shellPlanRehypePlugins: typeof shellPlanRehypePlugins$1;
579
+ declare const shellPlanRemarkPlugins: typeof shellPlanRemarkPlugins$1;
580
+ declare const shellRenderAnnouncementBanner: typeof shellRenderAnnouncementBanner$1;
581
+ declare const shellRenderAside: typeof shellRenderAside$1;
582
+ declare const shellRenderBadge: typeof shellRenderBadge$1;
583
+ declare const shellRenderBaseLayout: typeof shellRenderBaseLayout$1;
584
+ declare const shellRenderBlogIndex: typeof shellRenderBlogIndex$1;
585
+ declare const shellRenderBlogSlug: typeof shellRenderBlogSlug$1;
586
+ declare const shellRenderBreadcrumbs: typeof shellRenderBreadcrumbs$1;
587
+ declare const shellRenderCard: typeof shellRenderCard$1;
588
+ declare const shellRenderCardGrid: typeof shellRenderCardGrid$1;
589
+ declare const shellRenderChangelogEntry: typeof shellRenderChangelogEntry$1;
590
+ declare const shellRenderChangelogFooter: typeof shellRenderChangelogFooter$1;
591
+ declare const shellRenderChangelogHeader: typeof shellRenderChangelogHeader$1;
592
+ declare const shellRenderCodeGroup: typeof shellRenderCodeGroup$1;
593
+ declare const shellRenderColumns: typeof shellRenderColumns$1;
594
+ declare const shellRenderDocsLayout: typeof shellRenderDocsLayout$1;
595
+ declare const shellRenderDocsSlug: typeof shellRenderDocsSlug$1;
596
+ declare const shellRenderFileTree: typeof shellRenderFileTree$1;
597
+ declare const shellRenderFileTreeNode: typeof shellRenderFileTreeNode$1;
598
+ declare const shellRenderIcon: typeof shellRenderIcon$1;
599
+ declare const shellRenderLastModified: typeof shellRenderLastModified$1;
600
+ declare const shellRenderLinkButton: typeof shellRenderLinkButton$1;
601
+ declare const shellRenderLinkCard: typeof shellRenderLinkCard$1;
602
+ declare const shellRenderNotFound: typeof shellRenderNotFound$1;
603
+ declare const shellRenderOpenInAi: typeof shellRenderOpenInAi$1;
604
+ declare const shellRenderPackageInstall: typeof shellRenderPackageInstall$1;
605
+ declare const shellRenderPanels: typeof shellRenderPanels$1;
606
+ declare const shellRenderSearchButton: typeof shellRenderSearchButton$1;
607
+ declare const shellRenderSidebar: typeof shellRenderSidebar$1;
608
+ declare const shellRenderSkipLink: typeof shellRenderSkipLink$1;
609
+ declare const shellRenderSteps: typeof shellRenderSteps$1;
610
+ declare const shellRenderTableOfContents: typeof shellRenderTableOfContents$1;
611
+ declare const shellRenderTabs: typeof shellRenderTabs$1;
612
+ declare const shellRenderThemeToggle: typeof shellRenderThemeToggle$1;
613
+ declare const shellRenderTile: typeof shellRenderTile$1;
614
+ declare const shellRenderTileGrid: typeof shellRenderTileGrid$1;
615
+ declare const shellRenderTopNav: typeof shellRenderTopNav$1;
616
+ declare const shellRenderTopNavMobile: typeof shellRenderTopNavMobile$1;
617
+ declare const shellRenderUpdateBadge: typeof shellRenderUpdateBadge$1;
618
+ declare const shellRenderVersionSwitcher: typeof shellRenderVersionSwitcher$1;
619
+ declare const shellResolvePrefetch: typeof shellResolvePrefetch$1;
620
+ declare const shellResolveSnippetsConfig: typeof shellResolveSnippetsConfig$1;
621
+ declare const shellRewriteHead: typeof shellRewriteHead$1;
622
+ declare const shellRewriteModulepreload: typeof shellRewriteModulepreload$1;
623
+ declare const shellSearchButtonScript: typeof shellSearchButtonScript$1;
624
+ declare const shellSearchDialogCss: typeof shellSearchDialogCss$1;
625
+ declare const shellSearchDialogInnerHtml: typeof shellSearchDialogInnerHtml$1;
626
+ declare const shellSearchDialogScript: typeof shellSearchDialogScript$1;
627
+ declare const shellSidebarHeightInitScript: typeof shellSidebarHeightInitScript$1;
628
+ declare const shellSidebarScrollInitScript: typeof shellSidebarScrollInitScript$1;
629
+ declare const shellTableOfContentsScript: typeof shellTableOfContentsScript$1;
630
+ declare const tailwindComposeThemeCss: typeof tailwindComposeThemeCss$1;
631
+ declare const tailwindReadPresetCss: typeof tailwindReadPresetCss$1;
632
+ declare const tailwindResolveTheme: typeof tailwindResolveTheme$1;
633
+ declare const verifyLicense: typeof verifyLicense$1;
634
+ //#endregion
635
+ export { APPEARANCE_DEFAULTS, type AnalyticsProvider, type AppearanceConfig, type AppearanceDefault, type ConfigErrorCode, type ConfigValidationError, type ContentSource, type CustomScript, type FathomConfig, type FolderTreeNode, type FontConfig, type FontsConfig, type Ga4Config, type IntegrationsConfig, type LlmsConfig, type LlmsOptions, type LlmsPage, type LogoConfig, MAX_DESCRIPTION_LEN, MAX_SITENAME_LEN, MAX_TITLE_LEN, type NavConfig, type NavLink, type OgImageOptions, type Page, type PageTree, type PageTreeNode, type PagesToggleMap, type PlausibleConfig, type PosthogConfig, type PressConfig, type PublierConfig, type RobotsConfig, type RobotsOptions, type RssConfig, type SearchConfig, type SidebarConfig, type SkillMdOptions, type SkillPage, type StructuredSection, TOGGLEABLE_PAGES, type TocEntry, type ToggleablePage, type TreeNode, type TwitterMetaOptions, type TwitterMetaTag, type UmamiConfig, analyticsGenerateBodyScripts, analyticsGenerateScripts, asyncapiSourceBuild, blogFilterByTag, blogFilterPublished, blogReadingTime, blogSortByDate, blogTagCounts, buildHook, clamp, configResolvePublierConfig, configShouldRenderPage, contentGenerateLlmsTxt, contentGenerateOgImageMarkup, contentGenerateRobotsTxt, contentGenerateSkillMd, contentGenerateTwitterMeta, contentGetSlug, native as default, filterByTag, filterPublishedPages, generateAnalyticsBodyScripts, generateAnalyticsScripts, generateLlmsTxt, generateOgImage, generateRobotsTxt, generateRssFeed, generateSkillMd, generateTwitterMeta, getReadingTime, getSlug, getTagCounts, navigationActiveIndex, navigationBuildSidebar, navigationMatchNavPath, openapiBuildCustomSampleMap, openapiBuildInstanceId, openapiDecodePlaceholders, openapiExtractEndpoints, openapiGenerateFiles, openapiGetMediaTypeExample, openapiGetSnippetClient, openapiHarFromOperation, openapiMergeSpecs, openapiNavigationBuild, openapiParseAsyncApiSpec, openapiParseOpenapiSpec, openapiRenderApiPage, openapiRenderApiPlayground, openapiRenderApiReference, openapiRenderApiReferenceShell, openapiRenderAsyncChannel, openapiRenderAsyncMessage, openapiRenderCodeSamples, openapiRenderCollapsibleSection, openapiRenderMethodBadge, openapiRenderParamField, openapiRenderRequestExample, openapiRenderResponseExample, openapiRenderResponseField, openapiRenderSchemaRow, openapiRenderSchemaView, openapiResolveBaseUrl, openapiResolveRefs, openapiSourceBuild, pluginHook, primitivesColorSwatchScript, primitivesColorSwatchStyle, primitivesCopyButtonScript, primitivesCopyButtonStyle, primitivesImageZoomScript, primitivesRenderAccordion, primitivesRenderAccordionItem, primitivesRenderColorSwatch, primitivesRenderCopyButton, primitivesRenderImageZoom, primitivesRenderTabPanel, primitivesRenderTabs, primitivesRenderTooltip, primitivesRenderViewAnimation, primitivesTabsScript, primitivesViewAnimationScript, primitivesViewAnimationStyle, remarkCollectSections, remarkResolveSnippet, remarkTransformAsides, remarkVarsSubstitute, resolvePublierConfig, rssGenerateFeed, searchEntryToPage, searchExtractStructuredData, searchReadMetaYaml, shellAnnouncementBannerScript, shellBuildBannerInitScript, shellBuildGlobPattern, shellBuildHeaders, shellBuildLicenseErrorMessage, shellBuildThemeInitScript, shellCacheControl, shellCollectTailwindClassTokens, shellComposeTailwindEntry, shellExtractAnalyticsFromYaml, shellExtractAnnouncementFromYaml, shellExtractDocsConfigFromYaml, shellExtractFontsFromYaml, shellExtractNavFromYaml, shellExtractSiteFromYaml, shellExtractSnippetsFromYaml, shellExtractVarsFromYaml, shellGenerateId, shellLazyUpgradeScript, shellListThemes, shellNavActiveUpdateScript, shellOpenInAiScript, shellPlanDefaultRoutes, shellPlanDocsSlug, shellPlanRehypePlugins, shellPlanRemarkPlugins, shellRenderAnnouncementBanner, shellRenderAside, shellRenderBadge, shellRenderBaseLayout, shellRenderBlogIndex, shellRenderBlogSlug, shellRenderBreadcrumbs, shellRenderCard, shellRenderCardGrid, shellRenderChangelogEntry, shellRenderChangelogFooter, shellRenderChangelogHeader, shellRenderCodeGroup, shellRenderColumns, shellRenderDocsLayout, shellRenderDocsSlug, shellRenderFileTree, shellRenderFileTreeNode, shellRenderIcon, shellRenderLastModified, shellRenderLinkButton, shellRenderLinkCard, shellRenderNotFound, shellRenderOpenInAi, shellRenderPackageInstall, shellRenderPanels, shellRenderSearchButton, shellRenderSidebar, shellRenderSkipLink, shellRenderSteps, shellRenderTableOfContents, shellRenderTabs, shellRenderThemeToggle, shellRenderTile, shellRenderTileGrid, shellRenderTopNav, shellRenderTopNavMobile, shellRenderUpdateBadge, shellRenderVersionSwitcher, shellResolvePrefetch, shellResolveSnippetsConfig, shellRewriteHead, shellRewriteModulepreload, shellSearchButtonScript, shellSearchDialogCss, shellSearchDialogInnerHtml, shellSearchDialogScript, shellSidebarHeightInitScript, shellSidebarScrollInitScript, shellTableOfContentsScript, shouldRenderPage, sortByDate, tailwindComposeThemeCss, tailwindReadPresetCss, tailwindResolveTheme, verifyLicense };