import { Request } from 'express'; import { Dictionary } from 'lodash'; declare const removeEmpty: (obj: Dictionary) => object; declare const matchPath: (pattern: RegExp) => (req: Request) => boolean; export { removeEmpty, matchPath };