import { Card } from './classes/card'; import { Set } from './classes/set'; import { IQuery } from './interfaces/query'; export declare class QueryBuilder { static all(type: { new (): T; }): Promise; static find(type: { new (): T; }, id: string): Promise; static where(type: { new (): T; }, params: IQuery[]): Promise; }