import { Selectable } from 'kysely'; import type { Record as SongRecommendationRecord } from '../../../../lexicons/types/com/clioplaylists/alpha/feed/songRecommendation.js'; import { Database } from '../../db/index.js'; import { DatabaseSchemaType } from '../../db/database-schema.js'; import { RecordProcessor } from '../processor.js'; type IndexedSongRecommendation = Selectable; export type PluginType = RecordProcessor; export declare const makePlugin: (db: Database) => PluginType; export default makePlugin;