export interface ThemeColor { color: string; bgColor: string; } declare function useThemeColor(): ThemeColor; export default useThemeColor;