UNPKG

spok-ui

Version:

UI Library for SPOK system

51 lines (50 loc) 1.03 kB
import React, { FC } from 'react'; import { GlobalLayouts } from '../types/global'; declare global { interface Window { activeLayout: number; activeTheme: number; layouts: GlobalLayouts; } } declare module '@mui/material/Button' { interface ButtonPropsVariantOverrides { header: true; } } export declare enum Colors { gray = "#221F3E", green = "#017D7D", blue = "#5E54CC", red = "#DE294D", yellow = "#F2D883" } export declare const blue: { 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; }; export declare const gray: { 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; }; export declare const red: { 2: string; 3: string; }; interface Props { children: React.ReactElement; } declare const GlobalThemeProvider: FC<Props>; export default GlobalThemeProvider;