import { themeHelper } from '../../components/ThemeProvider'; type VariablesVariant = 'color' | 'breakpoint' | 'zIndex' | 'space' | 'borderRadius' | 'borderWidth' | 'shadow' | 'typography' | 'transition'; export type ThemeVariables = { [P in VariablesVariant]: { [key in (typeof themeHelper)[P][number]]: string; }; }; export declare function useThemeVars(): ThemeVariables; export {};