export { getInfo };
export { getRoot };
import type { Loader, Compiler } from './types.js';
declare function getInfo(loader: Loader): {
id: string;
root: string;
isClientSide: boolean;
isDev: boolean;
};
declare function getRoot(compiler: Compiler): string;