import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; import { type Theme } from './themes'; export * from './atoms'; export * from './palette'; export * from './themes'; export * from './platform'; export * as tokens from './tokens'; export * as utils from './utils'; export type TextStyleProp = { style?: StyleProp; }; export type ViewStyleProp = { style?: StyleProp; }; export declare const Context: import("react").Context<{ theme: Theme; }>; export declare function Provider>({ children, activeTheme, themes, }: React.PropsWithChildren<{ activeTheme: T; themes: A; }>): import("react/jsx-runtime").JSX.Element; export declare function useTheme(): Theme; //# sourceMappingURL=index.d.ts.map