import { ICache, IQuery } from "."; export declare const match: (item: any, query: IQuery) => boolean; export declare class LocalCache implements ICache { items: { [key: string]: T; }; constructor(); set(key: string, data: T): Promise; get(key: string): Promise; remove(key: string): Promise; findOne(query?: IQuery): Promise; findMany(query?: IQuery): Promise; }