declare type ThemeType = 'light' | 'dark' | string; export default function changeTheme(globalPrefixCls: string, theme: ThemeType, baseColor: Record): void; export {};