import { User } from '../../types/user'; export declare const user: { name?: string; state: User; } & { effects: {}; } & { reducers: { updateUser(state: User, user: User): { traits: { address?: Partial<{ city: string; country: string; postalCode: string; state: string; street: string; }>; age?: number; avatar?: string; birthday?: Date; company?: Partial<{ name: string; id: string | number; industry: string; employee_count: number; }>; plan?: string; createdAt?: Date; description?: string; email?: string; firstName?: string; gender?: string; id?: string; lastName?: string; name?: string; phone?: string; title?: string; username?: string; website?: string; }; id: string; }; }; } & { baseReducer: import("redux").Reducer; }; //# sourceMappingURL=user.d.ts.map