import type { Query } from 'sift';
type EveryOptions<TRecord> = {
    query?: Query<TRecord>;
    records: Array<TRecord>;
};
/**
 * @description
 * Use this method to check if every record matches the given query.
 */
export declare const every: <TRecord>(options: EveryOptions<TRecord>) => boolean;
export {};
