import { type Reducer } from 'redux'; import type { PromotionEvaluationsState } from './types/index.js'; export declare const INITIAL_STATE: PromotionEvaluationsState; export declare const getError: (state: PromotionEvaluationsState) => PromotionEvaluationsState['error']; export declare const getIsLoading: (state: PromotionEvaluationsState) => PromotionEvaluationsState['isLoading']; export declare const getResult: (state: PromotionEvaluationsState) => PromotionEvaluationsState['result']; export declare const getId: (state: PromotionEvaluationsState) => PromotionEvaluationsState['id']; declare const promotionEvaluationsReducer: Reducer; export default promotionEvaluationsReducer;