import type Database from 'better-sqlite3';
import type { GptConfigInput } from '../../models/GptConfig';
import type { GptConfigsPersistence } from './GptConfigsPersistence';
export declare class GptConfigsPersistenceSqlite implements GptConfigsPersistence {
    private readonly db;
    private constructor();
    static create(db: Database.Database): Promise<GptConfigsPersistenceSqlite>;
    set(name: string, config: GptConfigInput): Promise<void>;
    get(name: string): Promise<GptConfigInput>;
    getAll(): Promise<Map<string, GptConfigInput>>;
    delete(name: string): Promise<void>;
}
//# sourceMappingURL=GptConfigsPersistenceSqlite.d.ts.map