import { Payload } from '../../..'; import { Document, Where } from '../../../types'; import { PaginatedDocs } from '../../../mongoose/types'; import { TypeWithVersion } from '../../../versions/types'; export declare type Options = { collection: string; depth?: number; page?: number; limit?: number; locale?: string; fallbackLocale?: string; user?: Document; overrideAccess?: boolean; showHiddenFields?: boolean; sort?: string; where?: Where; }; export default function findVersionsLocal = any>(payload: Payload, options: Options): Promise>;