import { HeadersType } from '../declarations.js'; /** * Decorator to mark a class method as a 200 outgoing http response. * * @param headers - The headers for the response. * @returns A method decorator. * * @example * ```typescript * import { OkHttpResponse } from '@stone-js/http-core'; * * class UserController { * @OkHttpResponse() * getUsers() { * return { name: 'John Doe' }; * } * } * ``` */ export declare const OkHttpResponse: (headers?: HeadersType) => MethodDecorator;