import { AdaptableObject } from '../../types';
/**
 * Updates IsSuspended in a list of adaptable objects
 *
 * @param abObjectToChange object to suspend
 * @param list list of ab objects
 */
export declare function changeIsSuspendInList<AbObjectType extends AdaptableObject>(abObjectToChange: AbObjectType, list: AbObjectType[], IsSuspended: boolean): AbObjectType[];
export declare function suspendAllInList<AbObjectType extends AdaptableObject>(list: AbObjectType[]): AbObjectType[];
export declare function unsuspendAllInList<AbObjectType extends AdaptableObject>(list: AbObjectType[]): AbObjectType[];
