export declare const currentAction: {
    type: any;
    entityIds: any;
    skip: boolean;
};
export declare function resetCustomAction(): void;
export declare function logAction(type: string, entityIds?: any): void;
export declare function setAction(type: string, entityIds?: any): void;
export declare function setSkipAction(skip?: boolean): void;
export declare function action(action: string, entityIds?: any): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
