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