import type { AbsolutePath } from '@-xun/fs';
/**
 * A type representing the name of an available dummy loader.
 */
export type LoaderName = 'reflective';
/**
 * Return a path to Node.js-compatible loader file.
 */
export declare function getDummyLoaderPath(id: LoaderName): AbsolutePath;