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