import type { ShowFragment } from './show-fragment'; import type { Component } from '../component'; export declare class FilesFragment implements ShowFragment { renderRow(component: Component): Promise<{ title: string; content: string; }>; json(component: Component): Promise<{ title: string; json: string[]; }>; private getRelativePaths; weight: number; }