import type { H3Event } from '#nuxtseo/h3'; /** * Link sources from the installed content module's page collections. * * One provider for @nuxt/content v3 and comark-content both. `#nuxtseo/content` * normalizes the manifest shape, so the `path` field check that @nuxt/content needs * reads the same as comark answering it trivially. Nuxt Content v2 has no * collection model and keeps its own provider. */ declare const _default: (e: H3Event) => Promise<{ link: string; title: string; file: string; }[]>; export default _default;