import type { PdfConfig } from "../types.js"; export declare function slugify(input: string): string; export declare function uniqueSlug(title: string): string; export declare function ensureDir(path: string): void; export declare function ensureParent(path: string): void; export declare function resolveWorkspacePath(cwd: string, input: string): string; export declare function assertInsideWorkspace(cwd: string, targetPath: string): void; export declare function resolveOutputDir(cwd: string, config: PdfConfig): string; export declare function createDocumentPaths(cwd: string, config: PdfConfig, title: string, outputName?: string): { id: string; dir: string; htmlPath: string; pdfPath: string; manifestPath: string; previewPath: string; }; export declare function pathToFileHref(path: string): string; export declare function toDisplayPath(cwd: string, path: string): string; //# sourceMappingURL=paths.d.ts.map