import { IPayloadError } from 'store'; import { IClaim } from '../../entities/claim.entity'; declare const initialState: { list: { [key: string]: IClaim; }; error: { [key: string]: IPayloadError; }; loading: { [key: string]: boolean; }; }; export declare type ClaimState = typeof initialState; export declare const fetchClaim: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{ key: string; }, string>, fetchClear: import("@reduxjs/toolkit").ActionCreatorWithoutPayload, fetchClaimFailed: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{ key: string; data?: { [key: string]: IPayloadError; }; error: IPayloadError; }, string>, fetchClaimSucceeded: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{ key: string; data?: { [key: string]: IClaim; }; id?: string; }, string>; export declare const claimReducer: import("redux").Reducer<{ list: { [key: string]: IClaim; }; error: { [key: string]: IPayloadError; }; loading: { [key: string]: boolean; }; }, import("redux").AnyAction>; export {};