import { SetGasPriceAction, SetNativePriceAction, TokenPrices } from './actions'; export interface RootState { gasPrice: string | null; nativePrice: TokenPrices | null; } declare const rootReducer: import("redux").Reducer<{ gasPrice: string; nativePrice: TokenPrices; }, SetGasPriceAction | SetNativePriceAction, Partial<{ gasPrice: never; nativePrice: never; }>>; export default rootReducer; //# sourceMappingURL=reducers.d.ts.map