import { HeadersType } from '../declarations.js'; /** * Decorator to mark a class method as a file outgoing http response. * * @param statusCode - The status code of the response. * @param headers - The headers for the response. * @returns A method decorator. * * @example * ```typescript * import { FileHttpResponse } from '@stone-js/http-core'; * * class UserController { * @FileHttpResponse() * getUsers() { * return new File('path/to/file'); * } * } * ``` */ export declare const FileHttpResponse: (statusCode?: number, headers?: HeadersType) => MethodDecorator;