/** * The removeInPlace() method modifies an array in place, by removing elements that pass the test implemented by the provided function. * * NOTE: This should only be used on draft properties as provided by the immer produce library, as modifying elements in place is bad practice on non draft variables. * * @param inDraftArray The draft array to filter, will be modified in place. * @param condition Function to check each element in the array */ export declare const removeInPlace: (inDraftArray: T[], condition: (c: T) => boolean) => void;