import { Router } from 'express';
import { Services } from '../../../types/Services';
export declare function Routes({ layoutPath, services }: {
    services: Services;
    layoutPath: string;
}): Router;
export declare const RequestMissingReportRoutes: ({ services, path, layoutPath, }: {
    services: Services;
    path: string;
    layoutPath: string;
}) => Router;
