import { Exception } from '../exceptions/Exception'; import { ClientNotifyMessage } from './ClientNotifyMessage'; export declare class ResponseWrapper { static createSuccsess(data: any, status?: number, message?: ClientNotifyMessage, redirectUrl?: string): ResponseWrapper; static createFailure(exc: Exception, message?: ClientNotifyMessage, redirectUrl?: string): ResponseWrapper; success: boolean; data: any; message: string; status: number; redirectUrl: string | null; showNotify: ClientNotifyMessage; constructor(success: boolean, data: {}, message: string, status: number, redirectUrl: string | null); }