export declare const GET_ACTIVITY: string; export declare const GET_ACTIVITY_SUCCESS: string; export declare const GET_ACTIVITY_FAIL: string; export declare const UPDATE_ACTIVITY_FILTER: string; export declare function getActivity(): { type: string; }; export declare function updateActivityFilter(data: any): { type: string; payload: any; }; export declare function getActivityFail(): { type: string; }; export declare function getActivitySuccess(data: any): { type: string; payload: any; };