import { FbAdsAccount, FbUserInfoAndAccounts } from 'types/facebook.types'; export declare type UserState = { jwt: string; id?: string; messengerUserId?: number; authError?: string; firstName?: string; lastName?: string; email?: string; businessId?: string; haveVisitedAnUseCase: boolean; opportunityStage: string[]; videoMuted: boolean; facebookAccessToken: string | null; fbUserInfoAndAccounts: FbUserInfoAndAccounts | null; fbUserAdsAccounts: FbAdsAccount[]; credits: number; pinterestAccessToken: string | null; pinterestUserInfoAndAccounts: FbUserInfoAndAccounts | null; tiktokUserInfoAndAccount: any | null; tiktokAdsUserInfoAndAccount: any | null; }; declare const userReducer: import("redux-actions").ReduxCompatibleReducer; export default userReducer;