export declare type CountOptions = { indexName?: string; range?: IDBValidKey | IDBKeyRange; }; export declare class SkladCount { private database; constructor(database: IDBDatabase); countOneStore(storeName: string, options: CountOptions): Promise; countMultipleStores(arg: { [storeName: string]: CountOptions; }): Promise<{ [storeName: string]: number; }>; private countObjects; }