import { TranslationService } from '../services/translation.service';
export declare class ResponseHelper {
    private readonly translationService;
    constructor(translationService: TranslationService);
    success(key: string, lang: string, data?: any, params?: Record<string, string>): {
        status: boolean;
        message: string;
        data: any;
    };
    error(key: string, lang: string, statusCode?: number, data?: any, params?: Record<string, string>): {
        status: boolean;
        message: string;
        error: any;
    };
}
