import type { RepomixOutputFilePathStyle } from '../../config/configSchema.js'; export declare const buildRootLabels: (rootDirs: string[], cwd: string) => string[]; export declare const joinDisplayPath: (rootLabel: string, filePath: string) => string; export interface BuildFileDisplayPathParams { rootDir: string; filePath: string; cwd: string; filePathStyle: RepomixOutputFilePathStyle; rootLabel?: string; } export declare const buildFileDisplayPath: ({ rootDir, filePath, cwd, filePathStyle, rootLabel, }: BuildFileDisplayPathParams) => string; export declare const usesRootLabels: (filePathStyle: RepomixOutputFilePathStyle) => boolean;