import type es from 'estree';
import type { Context } from '../..';
/**
 * A function that converts multiple programs into a single program
 * using the topological ordering
 */
export type Bundler = (programs: Record<string, es.Program>, entrypointFilePath: string, topoOrder: string[], context: Context) => es.Program;
declare const defaultBundler: Bundler;
export default defaultBundler;
