import { Theme } from './ThemeGenerator.interface'; interface ThemeListProps { builtinThemes: Theme[]; customThemes: Theme[]; currentThemeId: string; highlightedThemeId: string | null; onLoad: (id: string) => void; onRemove: (id: string) => void; onCreateNew: () => void; } export declare function ThemeList({ builtinThemes, customThemes, currentThemeId, highlightedThemeId, onLoad, onRemove, onCreateNew, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};