import { EntityState } from '../entity-state';
import { Type } from '@angular/core';
export interface EntitySetLoadingAction {
    payload: boolean;
}
export declare class SetLoading {
    /**
     * Generates an action that will set the loading state for the given state.
     * @param target The targeted state class
     * @param loading The loading state
     */
    constructor(target: Type<EntityState<any>>, loading: boolean);
}
