type AugnitoMobileSocketResponse = {
    ToDeviceId: string;
    FromDeviceId: string;
    Type: string;
    SeqId: string;
    Data: AugnitoMobileSocketResponseData;
};
type AugnitoMobileSocketResponseData = {
    UserTag: string;
    AppNotification?: AugnitoAppNotification;
};
type AugnitoAppNotification = {
    Message: string;
    SubType: string;
    SubscriptionCode: string;
    UserCode: string;
    Word: string;
};
export { AugnitoMobileSocketResponse, AugnitoMobileSocketResponseData, AugnitoAppNotification };
