import { Dexie, Table } from "dexie"; import type { Core } from "../../types"; interface IStoredAvatar { id: string; name?: string; thumbnail?: string; gender?: Core.Gender; asset: Core.AssetInfo; } export declare class StoredAvatarDatabase extends Dexie { storedAvatars: Table; constructor(name: string); getStoredAvatarById: (id: string) => Promise; storeAvatar: (avatar: IStoredAvatar) => Promise; deleteAvatar: (id: string) => Promise; } export {};