import { commonUser } from './common-user';
export interface AuthUser extends commonUser {
    company: {
        id: string;
        name: string;
        image: string;
        paid: boolean;
        color: string;
    };
}
