import type { ResolvedContentConfig } from "../content-config.js"; export interface PathsHelper { getDownloadPath(sourceId?: string): string; getPublishedDownloadPath(sourceId?: string): string; getStagedDownloadPath(sourceId?: string): string; getTempPath(sourceId?: string, pluginName?: string): string; getBackupPath(sourceId?: string): string; getRunPath(...segments: string[]): string; } export declare function createPathsHelper(resolvedConfig: ResolvedContentConfig, cwd: string, options?: { runId?: string; }): PathsHelper; //# sourceMappingURL=paths-helper.d.ts.map