import { ReactNode } from 'react'; export interface Icon { name: string; content: ReactNode; clickSound: T; tripleSound: T; } interface Sound { name: T; src: string; } export interface Theme { name: string; bgm?: string; icons: Icon[]; sounds: Sound[]; }