import { ClientLoaderConfiguration } from "../types.js"; /** * Exposes the different modules via express static routes so they can be imported by the client. */ export type AgnosticResponse = { headers?: Record; status: number; body?: string; path?: string; }; export declare function Setup(config: ClientLoaderConfiguration & { base: string; importMapPrefix?: string; }): void; export declare function getClientDebugStats(): { debug: boolean; info: boolean; useSources: boolean; aliases: Map; mappings: { routes: { [name: string]: { folderPath: string; mainPath: string; }; }; }; }; export declare function Route(path: string): Promise;