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(abObjectToChange: AbObjectType, list: AbObjectType[], IsSuspended: boolean): AbObjectType[]; export declare function suspendAllInList(list: AbObjectType[]): AbObjectType[]; export declare function unsuspendAllInList(list: AbObjectType[]): AbObjectType[];