import { NodeDetailsProps } from '../types'; interface FileListViewProps extends NodeDetailsProps { onFileSelect: (moduleId: string) => void; } /** * A component that displays a list of all files in the current node */ export declare function FileListView({ node, onFileSelect }: FileListViewProps): import("preact").JSX.Element; export {};