import React, { PropsWithChildren } from 'react'; export declare const defaultTheme: ITheme; export interface ITheme { readonly primary: string; readonly text: string; readonly secondaryText: string; readonly titleColor: string; readonly contrast: string; readonly warn: string; readonly disabled: string; readonly background: string; readonly textOnBackground: string; readonly [key: string]: string; } declare const ThemeContext: React.Context; declare const ThemeConsumer: React.Consumer; declare const ThemeProvider: ({ children, theme, }: React.PropsWithChildren<{ theme?: Partial | undefined; }>) => JSX.Element; export default ThemeProvider; export { ThemeConsumer, ThemeContext };