export declare const packageDir: string; export declare const distServe: string; export declare const dcrouterHomeDir: string; export declare const defaultTsmDbPath: string; /** * Resolve all data paths from a given baseDir. * When no baseDir is provided, falls back to ~/.serve.zone/dcrouter. * Specific overrides (e.g. DATA_DIR env) take precedence. */ export declare function resolvePaths(baseDir?: string): { dcrouterHomeDir: string; dataDir: string; defaultTsmDbPath: string; };