import React from 'react';
import { DirectoryDocumentsProps } from './DirectoryDocuments.types';
/**
 * A slice to display and search documents from the directory system.
 * The searching and loading of data will be done in the frontend and the documents passed in to the component
 */
declare const DirectoryDocuments: React.FunctionComponent<DirectoryDocumentsProps>;
export default DirectoryDocuments;
