import { Router } from '@loopback/rest'; export interface RouterOptions { /** * The base path where to "mount" the controller. */ basePath: string; } export declare function createRouter(options: RouterOptions): Router;