import { Controller } from "../cores/decorators/interfaces/controler"; export declare const generateParamCustomize: (controller: Controller, handlerName: string) => { description: any; requestBody: { content: { "application/json": { schema: { type: string; properties: Object; required: string[]; }; }; }; }; parameters: any[]; requestResponse: { "200": { description: string; content: { "application/json": { schema: { type: string; properties: object; }; }; }; }; }; };