import { UserProfileModel } from '~/models/user'; export interface UserAuth { access: string; refresh: string; } export interface UserState { profile: Nullable; auth: Nullable; }