export declare class DATASTORES { private static instance; private _stores; readonly prop: Array; static getInstance(): DATASTORES; resetStore(): void; addStore(store: string): void; addStores(stores: Array): void; dropStore(store: string): void; }