import { TurmsNotification, TurmsNotification_Data } from './proto/notification/turms_notification'; export default class Response { readonly timestamp: Date; readonly requestId?: string; readonly code: number; readonly data: T; constructor(timestamp: Date, requestId: string, code: number, data: any); static get isTurmsResponse(): boolean; static value(data: T): Response; static nullValue(): Response; static emptyList(): Response; static fromNotification(notification: TurmsNotification, dataTransformer?: (data: TurmsNotification_Data) => T): Response; } //# sourceMappingURL=response.d.ts.map