import type { EventEmitter } from 'events';
import type { LogProvider } from '../logger.js';
import type { IUserSplash, IUserSplashKey, IUserSplashStore } from '../types/stores/user-splash-store.js';
import type { Db } from './db.js';
export default class UserSplashStore implements IUserSplashStore {
    private db;
    private logger;
    constructor(db: Db, _eventBus: EventEmitter, getLogger: LogProvider);
    getAllUserSplashes(userId: number): Promise<IUserSplash[]>;
    getSplash(userId: number, splashId: string): Promise<IUserSplash>;
    updateSplash(splash: IUserSplash): Promise<IUserSplash>;
    delete({ userId, splashId }: IUserSplashKey): Promise<void>;
    deleteAll(): Promise<void>;
    destroy(): void;
    exists({ userId, splashId }: IUserSplashKey): Promise<boolean>;
    get({ userId, splashId }: IUserSplashKey): Promise<IUserSplash>;
    getAll(): Promise<IUserSplash[]>;
}
//# sourceMappingURL=user-splash-store.d.ts.map