import { type WebpackStatsLike } from "./manifest-generator.js"; /** * Publish the subset of server compiler output that is reachable from emitted * stylesheets. The whole next state is validated before the first mutation and * the ownership map changes only after the file transaction commits. */ export declare function copyServerPublicAssetsToClient(cwd: string, serverDir: string, clientDir: string, stats: WebpackStatsLike | undefined, memoryFiles?: ReadonlyMap, ownedFiles?: Map, clientOwnedFiles?: ReadonlySet, publicPath?: string): Promise; declare function readCssUrlReferences(source: string): string[]; declare function matchEmittedCssAsset(stylesheet: string, reference: string, candidates: readonly string[], publicPath: string): string | undefined; export declare const __testing: { matchEmittedCssAsset: typeof matchEmittedCssAsset; readCssUrlReferences: typeof readCssUrlReferences; }; export {}; //# sourceMappingURL=server-public-assets.d.ts.map