import React from 'react'; export interface ProviderProps { /** theme config object to style components */ theme?: object; /** array of a type! */ children?: React.ReactNode; } declare function ThemeProvider({ theme, children }: ProviderProps): JSX.Element; export default ThemeProvider;