export declare function Controller(params?: { prefix: string; }): any; export declare const controller: any; export declare class Param { url?: string; middlewares?: any[]; } export declare function POST(_url?: string): any; export declare function POST(param?: Param): any; export declare const Post: any; export declare function GET(_url?: string): any; export declare function GET(param?: Param): any; export declare const Get: any; export declare function PUT(_url?: string): any; export declare function PUT(param?: Param): any; export declare const Put: any; export declare function DELETE(_url?: string): any; export declare function DELETE(param?: Param): any; export declare const Delete: any;