/// <reference path="../virtual.d.ts" />

import { CollectionConfig } from '@it-astro:content/injector';

/**
 * Extend the given collection map with collections defined by integrations.
 *
 * @throws AstroError when conflicts are detected between collections.
 */
declare function injectCollections(collections: Record<string, CollectionConfig>): Record<string, CollectionConfig>;

export { injectCollections };
