import { Action } from "@ngrx/store"; import { ChefTenantManagementActionTypes } from "./action-types"; export declare class ChefTenantManagementFetchLicenseIds implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchLicenseIds; constructor(payload: any); } export declare class ChefTenantManagementFetchLicenseIdsSuccess implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchLicenseIdsSuccess; constructor(payload: any); } export declare class ChefTenantManagementFetchLicenseIdsFailure implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchLicenseIdsFailure; constructor(payload: any); } export declare class ChefTenantManagementFetchClientDetails implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchClientDetails; constructor(payload: any); } export declare class ChefTenantManagementFetchClientDetailsSuccess implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchClientDetailsSuccess; constructor(payload: any); } export declare class ChefTenantManagementFetchClientDetailsFailure implements Action { payload: any; readonly type = ChefTenantManagementActionTypes.FetchClientDetailsFailure; constructor(payload: any); }