UNPKG

nativestyler

Version:

An advanced styling toolkit for React Native applications, providing dynamic, prop-based styling with efficient caching.

9 lines (8 loc) 253 B
import React from 'react'; interface ThemeProviderProps { children: React.ReactNode; initialTheme?: object; } export declare const ThemeContext: React.Context<object>; export declare const ThemeProvider: React.FC<ThemeProviderProps>; export {};