export interface ChangelogEntry { id: string; version: string; date: string; title: string; body: string; tags?: string[]; } interface ChangelogProps { title?: string; description?: string; entries?: ChangelogEntry[]; class?: string; } declare const Changelog: import("svelte").Component; type Changelog = ReturnType; export default Changelog;