import { Response } from "express";
import { CookieType } from "../../Config/Constant/Response.Constant";
export default class FileResponse {
    #private;
    constructor(Response: Response, rootPATH: string, contentType: string, StatusCode?: number, cookieData?: CookieType);
    SendFile(FileName: string, StatusCode?: number, CookieData?: CookieType): void;
    /**
     * Sets the content type of the response.
     * @private
     */
    private setContentType;
}
