export interface ProfileState { jwt: string; isAppLoaded: boolean; isAppActive: boolean; } export interface ProfileAction { type: string; jwt?: string; isAppActive?: boolean; isAppLoaded?: boolean; } declare const profileReducer: (state: ProfileState | undefined, action: ProfileAction) => ProfileState; export default profileReducer;