UNPKG

@harvest-profit/npk

Version:
15 lines 532 B
import React, { ReactNode } from "react"; interface ThemeContextType { prependRootId: string; appendRootId: string; currencySymbol: string; } declare const ThemeContext: React.Context<ThemeContextType>; export default ThemeContext; interface ThemeContextProviderProps { config?: Partial<ThemeContextType>; children: ReactNode; } export declare const ThemeContextProvider: React.FC<ThemeContextProviderProps>; export type { ThemeContextType, ThemeContextProviderProps }; //# sourceMappingURL=ThemeContext.d.ts.map