import type { Query } from 'sift';
type RemoveOptions<TRecord> = {
    query: Query<TRecord>;
    records: Array<TRecord>;
};
/**
 * @description
 * Use this helper to remove all records from the record set that match the given query.
 */
export declare const remove: <TRecord>(options: RemoveOptions<TRecord>) => TRecord[];
export {};
