/** * Index of all boolean values stored in storage. */ export default class boolIndex { instanceID: string; constructor(id: string); /** * Get all keys */ getKeys(): Promise; /** * Check if a key exists. */ hasKey(key: string): boolean | null | undefined; /** * Get all boolean values from storage */ getAll(): Promise; } //# sourceMappingURL=booleans.d.ts.map