export interface Song { id: string; title: string; artist: string; } export type Criteria = 'title' | 'artist';