import yogaTokens from '@gympass/yoga-tokens'; declare type ThemeVars = { (tokens: typeof yogaTokens): {}; isFromThemeBuilder?: boolean; }; /** * Gets a function that one could sent to \ in order to inject a custom thme (or sets of tokens) */ declare function createTheme(themeVars: ThemeVars): ThemeVars; export { createTheme as default };