import type { StylePreprocessorConfig } from '../../types/build'; type Built = { ssr: string; client: string; hasAwaitSlot: boolean; /** `.svelte.ts`/`.svelte.js` runes module (compileModule output) — has no * component default export, so it must never get a hydration index. */ isModule: boolean; }; type Cache = Map; export declare const clearSvelteCompilerCache: () => void; export declare const compileSvelte: (entryPoints: string[], svelteRoot: string, cache?: Cache, isDev?: boolean, stylePreprocessors?: StylePreprocessorConfig) => Promise<{ svelteClientPaths: string[]; svelteIndexPaths: string[]; svelteServerPaths: string[]; }>; export {};