import { CoreDecorator, Type } from '../../core/decorators';
import { RouteConfig } from './interfaces';
export interface Route {
    path: string;
    method: string | string[];
    config?: RouteConfig;
    providers?: Array<Type<any> | any>;
    labels?: string | string[];
}
export declare const Route: CoreDecorator<Route>;
export interface Lifecycle {
    event: string;
}
export declare const Lifecycle: CoreDecorator<Lifecycle>;
