import { Lazy } from "../Lazy"; export interface IDocumentQueryBaseSingle { first(): Promise; firstOrNull(): Promise; single(): Promise; singleOrNull(): Promise; count(): Promise; longCount(): Promise; lazily(): Lazy; lazily(onEval: (list: T[]) => void): Lazy; any(): Promise; countLazily(): Lazy; }