@harvest-profit/npk
Version:
NPK UI Design System
15 lines • 532 B
TypeScript
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