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