import { IDS, ItemPredicate } from './types'; /** * Remove item from collection * * @example * * * store.update(state => ({ * names: arrayRemove(state.names, ['one', 'second']) * })) */ export declare function arrayRemove(arr: T, identifier: IDS | ItemPredicate, idKey?: string): T;