/**
 * @fileoverview Utility to generate tree structure from file paths
 *
 * This module provides functions to convert a list of file paths into a
 * hierarchical tree structure for display in a markdown file.
 */
/**
 * Generate a markdown tree representation of file paths
 * @param filePaths Array of file paths
 * @returns Markdown string representing the tree structure
 */
export declare function generateFileTree(filePaths: string[]): string;
