export type * from './accounting';
export type * from './audit';
export type * from './auth';
export type * from './branch';
export type * from './cash-count';
export type * from './dashboard';
export type * from './financing';
export type * from './member';
export type * from './navigation';
export type * from './region';
export type * from './savings';
export type * from './ui';
export type * from './user';

import type { Auth } from './auth';

export type SharedData = {
    name: string;
    auth: Auth;
    sidebarOpen: boolean;
    [key: string]: unknown;
};
