import { HandlerOptions } from '../decorator-options/HandlerOptions'; /** * Registers an action to be executed when GET request comes on a given route. * Must be applied on a controller action. */ export declare function Get(route?: RegExp, options?: HandlerOptions): Function; /** * Registers an action to be executed when GET request comes on a given route. * Must be applied on a controller action. */ export declare function Get(route?: string, options?: HandlerOptions): Function;