import { type FileTree } from './Tree'; export type FileFormat = 'list' | 'tree'; export interface FilesProps { format: FileFormat; list: string[]; name: string; tree: FileTree; } export declare function Files({ format, list, name, tree }: FilesProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map