export interface IFundState { jwt: string; isAppLoaded: boolean; isAppActive: boolean; useAuth?: boolean; } export interface IFundAction { type: string; jwt?: string; isAppActive?: boolean; isAppLoaded?: boolean; useAuth?: boolean; } declare const fundReducer: (state: IFundState | undefined, action: IFundAction) => IFundState; export default fundReducer;