export interface RootState { version: string; } export interface LayoutState { collapsed: boolean | null; active: string[] | null; opens: string[]; mobile: boolean; drawer: boolean; small: boolean; type: string | null; routes: any; theme: string; } export interface PassportState { user: { [index: string]: any; } | null; token: { access: string | null; refresh: string | null; }; auto: boolean | null; } export declare const mutations: { layout: { collapsed: string; opens: string; active: string; drawer: string; mobile: string; type: string; routes: string; }; passport: { user: string; token: { access: string; refresh: string; }; refresh: string; auto: string; reset: string; }; };