interface ThemeInterface { [index: string]: { [index: string]: string; }; } export default function (config: { [index: string]: string; }): ThemeInterface; export {};