import { Action } from "@ngrx/store"; import { IAlertState } from "../state/alert.state"; export declare const alertsReducer: import("@ngrx/store").ActionReducer<{ show: boolean; title: string; message: string; type: string; confirmation: boolean; spaceId?: number; bookingId?: number; employeeId?: number; deleteCompanyId?: number; editCompanyId?: number; editSpaceId?: number; editCoworkingId?: number; optionOkText?: string; optionCancelText?: string; action?: string; }, Action>; export declare function alertsReducers(state: IAlertState, action: Action): { show: boolean; title: string; message: string; type: string; confirmation: boolean; spaceId?: number; bookingId?: number; employeeId?: number; deleteCompanyId?: number; editCompanyId?: number; editSpaceId?: number; editCoworkingId?: number; optionOkText?: string; optionCancelText?: string; action?: string; };