import { Application } from '../../Foundation/Application'; export declare class RoutingServiceProvider { protected app: Application; /** * The controller namespace for the application. * * @var string|null */ protected _namespace: any; /** * Create a new service provider instance. * @param app */ constructor(app: Application); register(): void; boot(): void; /** * Load the application routes. * * @return void */ protected loadRoutes(): void; }