import React, { FC } from 'react'; interface Colors { backgroundColor: string; borderColor: string; textColor: string; handleColor: string; boxShadowBorder: string; boxShadowCommon: string; focusedOutlineColor: string; } export interface ThemeOptions { colors?: Colors; } export declare const colorInitial: { backgroundColor: string; borderColor: string; textColor: string; handleColor: string; boxShadowBorder: string; boxShadowCommon: string; focusedOutlineColor: string; backgroundOverlay: string; }; export declare const ThemeSelectorContext: React.Context; declare const ThemeProvider: FC<{ colors?: Colors; }>; export default ThemeProvider;