import type ParseObject from './ParseObject';
/**
* Provides a local datastore which can be used to store and retrieve Parse.Object.
* To enable this functionality, call Parse.enableLocalDatastore().
*
* Pin object to add to local datastore
*
*
await object.pin();*
await object.pinWithName('pinName');
*
* Query pinned objects
*
* query.fromLocalDatastore();*
query.fromPin();*
query.fromPinWithName();* *
const localObjects = await query.find();* * @class Parse.LocalDatastore * @static */ declare const LocalDatastore: { isEnabled: boolean; isSyncing: boolean; fromPinWithName(name: string): Promise
* await Parse.LocalDatastore.updateFromServer();
*
*
* @function updateFromServer
* @name Parse.LocalDatastore.updateFromServer
* @static
*/
updateFromServer(): Promise