import type { PiletBundleEntry } from '../../types';
/**
 * Includes the given bundle script via its URL with a dependency resolution.
 * @param meta The meta data of the dependency to include.
 * @param crossOrigin The override for the cross-origin attribute.
 * @returns The evaluated module.
 */
export declare function includeBundle(meta: PiletBundleEntry, crossOrigin?: string): Promise<import("../../types").SinglePiletApp | import("../../types").MultiPiletApp>;
