import { Action } from '@ngrx/store'; import { SeamsHttpResponse } from '@prutech/components/lib/shared/models/http-response'; export declare enum LinkCourseDetailsActionTypes { LoadLinkCourseDetails = "[Link Course Details] Load", LoadLinkCourseDetailsSuccess = "[Link Course Details] Load Success", LoadLinkCourseDetailsFail = "[Link Course Details] Load Fail" } export declare class LoadLinkCourseDetailsAction implements Action { payload: number; readonly type: string; constructor(payload: number); } export declare class LoadLinkCourseDetailsSuccessAction implements Action { payload: any; readonly type: string; constructor(payload: any); } export declare class LoadLinkCourseDetailsFailAction implements Action { payload?: SeamsHttpResponse; readonly type: string; constructor(payload?: SeamsHttpResponse); } export declare type LinkCourseDetailsActions = LoadLinkCourseDetailsAction | LoadLinkCourseDetailsSuccessAction | LoadLinkCourseDetailsFailAction;