import { endpoint as _endpoint } from './endpoint.decorator'; import { form as _form, path as _path, json as _json, query as _query, header as _header, cookie as _cookie, files as _files, raw as _raw } from './params.decorator'; import { service as _service } from './service.decorator'; declare const form: typeof _form; declare const path: typeof _path; declare const json: typeof _json; declare const query: typeof _query; declare const header: typeof _header; declare const cookie: typeof _cookie; declare const files: typeof _files; declare const raw: typeof _raw; declare const service: typeof _service; declare const endpoint: typeof _endpoint; /** * Adds two numbers together. * @example * Here's a simple example: * ``` * // Prints "2": * console.log(add(1,1)); * ``` * @example * Here's an example with negative numbers: * ``` * // Prints "0": * console.log(add(1,-1)); * ``` */ export declare namespace HTTPDecorators { /** * @group Config */ const endpoint: typeof _endpoint; /** * @group Config */ const service: typeof _service; /** * @group Params */ const form: typeof _form; /** * @group Params */ const path: typeof _path; /** * @group Params */ const json: typeof _json; /** * @group Params */ const query: typeof _query; /** * @group Params */ const header: typeof _header; /** * @group Params */ const cookie: typeof _cookie; /** * @group Params */ const files: typeof _files; /** * @group Params */ const raw: typeof _raw; } export { form, path, json, query, header, cookie, files, raw, service, endpoint };