import type { FileCollection } from '../FileCollection.ts'; import type { Source } from '../Source.ts'; /** * Append a source to a FileCollection * @param fileCollection - The FileCollection to append the files to. * @param source - The source to append. * @param options - Options for appending the source. * @param options.baseURL - The base URL to use for the source if it doesn't have one. * @returns Promise */ export declare function appendSource(fileCollection: FileCollection, source: Source, options?: { baseURL?: string; }): Promise; //# sourceMappingURL=appendSource.d.ts.map