export declare const HANDLE_CLICK_APP: string; export declare const REQUEST_GET_APPLICATION_V1: string; export declare const GET_APPLICATION_V1_START: string; export declare const GET_APPLICATION_V1_SUCCESS: string; export declare const GET_APPLICATION_V1_ERROR: string; export declare function requestGetApplications(): { type: string; payload: {}; }; export declare function getApplicationStart(): { type: string; }; export declare function getApplicationSuccess(data: any): { type: string; payload: { data: any; }; }; export declare function getApplicationError(message: string): { type: string; payload: { message: string; }; }; export declare function handleClickApp(appId: string): { type: string; payload: string; };