import type { ProgressPermissionsRefType } from '../types';
declare type ProcessProgressAction<T extends string = string> = {
    progressPermissionsRef: ProgressPermissionsRefType<T>;
    actionsToCheck: T[];
};
export declare const addActionsToProgress: <T extends string = string>({ progressPermissionsRef, actionsToCheck, }: ProcessProgressAction<T>) => T[];
export declare const removeActionsFromProgress: <T extends string = string>({ progressPermissionsRef, actionsToCheck, }: ProcessProgressAction<T>) => T[];
export {};
