export interface ThemeColors { bgPrimary: string; bgSecondary: string; bgHover: string; textPrimary: string; textSecondary: string; textTertiary: string; borderPrimary: string; borderSecondary: string; buttonPrimary: string; buttonPrimaryHover: string; errorBg: string; errorText: string; errorBorder: string; successBg: string; successText: string; successBorder: string; } export declare const useThemeColors: () => ThemeColors;