import { Action } from '@ngrx/store'; import { VendorLevelStatus } from '../models/vendor-level-activity-status.model'; export declare enum VendorLevelStatusActionTypes { LoadVendorLevelStatus = "[VendorLevelStatus Details] Load", LoadVendorLevelStatusSuccess = "[VendorLevelStatus Details] Load Success", LoadVendorLevelStatusFail = "[VendorLevelStatus Details] Load Fail" } export declare class LoadVendorLevelStatusAction implements Action { payload?: number; readonly type: string; constructor(payload?: number); } export declare class LoadVendorLevelStatusSuccessAction implements Action { payload: VendorLevelStatus[]; readonly type: string; constructor(payload: VendorLevelStatus[]); } export declare class LoadVendorLevelStatusFailAction implements Action { payload?: any; readonly type: string; constructor(payload?: any); c: any; } export declare type VendorLevelStatusActions = LoadVendorLevelStatusAction | LoadVendorLevelStatusSuccessAction | LoadVendorLevelStatusFailAction;