import FileResponseInterfaces from "../Config/Interfaces/Response/File-Response.Interface";
/**
 * The function sends a file as a response with the specified status code, filename, and root
 * directory.
 * @param {FileResponseInterface}  - - `statusCode`: The HTTP status code to be sent in the response.
 * @param {FileResponseInterface}  - - `Filename`: The filename of the file to be sent in the response.
 * @param {FileResponseInterface}  - - `rootName`: The root directory of the file to be sent in the response.
 * @param {FileResponseInterface}  - - `cookieData`: The cookie data to be sent in the response.
 */
export declare const SendFileResponse: ({ statusCode, response, Filename, rootName, cookieData, contentType, }: FileResponseInterfaces) => void;
