import { Response } from 'express';
export declare class ResponseService {
    success(res: Response, data?: any, message?: string): Response<any, Record<string, any>>;
    created(res: Response, data?: any, message?: string): Response<any, Record<string, any>>;
    badRequest(res: Response, message?: string, data?: any): Response<any, Record<string, any>>;
    unauthorized(res: Response, message?: string, data?: any): Response<any, Record<string, any>>;
    forbidden(res: Response, message?: string, data?: any): Response<any, Record<string, any>>;
    notFound(res: Response, message?: string): Response<any, Record<string, any>>;
    conflict(res: Response, message?: string, data?: any): Response<any, Record<string, any>>;
    serverError(res: Response, message?: string, error?: any): Response<any, Record<string, any>>;
    file(res: Response, buffer: Buffer, filename: string, contentType?: string): Response<any, Record<string, any>>;
}
