declare module 'astro:content' { export interface AstroCollectionEntry { body: string collection: string data: TData id: string render: () => Promise<{ Content: import('astro').MarkdownInstance['Content'] }> slug: string } export function getCollection( collection: string, filter?: (entry: AstroCollectionEntry) => boolean, ): Promise[]> }