import { ApplicationErrorState } from '../../interfaces'; import { LOG_APPLICATION_ERROR, CLEAR_APPLICATION_ERRORS, DISMISS_APPLICATION_ERROR, RESTORE_APPLICATION_ERRORS } from '../../constants'; export declare const setApplicationError: (payload: Omit) => { type: "@platform/LOG_APPLICATION_ERROR"; payload: Omit; }; export declare function dismissApplicationError(dismissByType: string): { type: "@platform/DISMISS_APPLICATION_ERROR"; payload: { dismissByType: string; }; }; export declare const restoreApplicationError: (payload: ApplicationErrorState[]) => { type: "@platform/RESTORE_APPLICATION_ERRORS"; payload: ApplicationErrorState[]; }; export type ErrorActions = { type: LOG_APPLICATION_ERROR; payload: Omit; } | { type: DISMISS_APPLICATION_ERROR; payload: { dismissByType: string; }; } | { type: CLEAR_APPLICATION_ERRORS; } | { type: RESTORE_APPLICATION_ERRORS; payload: ApplicationErrorState[]; }; //# sourceMappingURL=error-actions.d.ts.map