/// import { EventEmitter } from "events"; import { Application } from '@ihadeed/feathers'; export declare const ROUTER: unique symbol; declare module '@ihadeed/feathers' { interface Application extends EventEmitter { lookup(path: string): { [key: string]: string; }; } } export declare const routing: () => (app: Application) => void;