import * as Router from 'koa-router';
/**
 * Options to define a handler.
 */
export interface SubControllerOptions {
    path?: string;
    name?: string;
    middlewares?: Router.IMiddleware[];
}
export declare function SubController(options?: SubControllerOptions): PropertyDecorator & MethodDecorator;
