type USR = {
    device_id: string;
    user_id: string;
};
type CipherKeyIV = {
    key: string;
    iv: string;
};
export { USR, CipherKeyIV };
