export interface Example { /** kebab-case slug used as the filename, e.g. "no-shadow" */ slug: string; /** JSDoc description extracted from the comment above the export */ description: string; /** Rendered HTML content */ html: string; } export declare const buildComponents: () => Promise;