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