import type { StylePreprocessorConfig } from '../../types/build'; type ModuleServerConfig = { projectRoot: string; vendorPaths: Record; frameworkDirs?: { angular?: string; react?: string; svelte?: string; vue?: string; }; stylePreprocessors?: StylePreprocessorConfig; }; export declare const warnIfReactFastRefreshUnsupported: () => void; export declare const warmCompilers: (frameworks: { svelte?: boolean; vue?: boolean; }) => Promise; export declare const createModuleServer: (config: ModuleServerConfig) => (pathname: string) => Promise; export declare const invalidateModule: (filePath: string) => void; export declare const warmCache: (pathname: string) => void; declare let globalModuleServer: ((pathname: string) => Promise | Response | undefined) | null; export declare const SRC_URL_PREFIX = "/@src/"; export declare const setGlobalModuleServer: (handler: typeof globalModuleServer) => void; export {};