import type { SyncPaths } from "../types.js"; export declare function getPiDir(): string; export declare function getDefaultPaths(piDir?: string): SyncPaths; export declare function normalizePortablePath(input: string): string; export declare function resolveInside(root: string, portablePath: string): string; export declare function toRepoPath(input: string): string; export declare function safeFileName(value: string): string; export declare function ensureDir(dir: string): Promise; export declare function pathExists(filePath: string): Promise; export declare function timestampForFile(date?: Date): string;