export declare class DocumentsStore {
    subscribe: any;
    set: (this: void, value: Map<any, any>) => void;
    update: any;
    constructor();
    clear(): void;
    /**
     * Get Documents in a Collection
     * @param collectionId Collection Id
     * @param cache Use cached response
     * @param queries Array of query strings.
     * @param limit Maximum number of documents to return in response. By default will return maximum 25 results. Maximum of 100 results allowed per request.
     * @param offset Offset value. The default value is 0. Use this value to manage pagination.
     * @param cursor ID of the document used as the starting point for the query, excluding the document itself. Should be used for efficient pagination when working with large sets of data.
     * @param cursorDirection Direction of the cursor.
     * @param orderAttributes Array of attributes used to sort results.
     * @param orderTypes Array of order directions for sorting attribtues. Possible values are DESC for descending order, or ASC for ascending order.
     * @returns {Promise<{documents: any[], total: number}>}
     */
    fetchDocuments(collectionId: string, cache?: boolean, queries?: string[], limit?: number, offset?: number, cursor?: string, cursorDirection?: string, orderAttributes?: string[], orderTypes?: string[]): Promise<{
        documents: any[];
        total: number;
    }>;
    /**
     * @param {string} collectionId Collection ID
     * @param {string} documentId Document ID
     * @param {boolean} cache Use cache
     * @returns {Promise<Record<string, unknown>>}
     */
    fetchDocument(collectionId: string, documentId: string, cache: boolean): Promise<Record<string, unknown>>;
}
