/// import { Theme } from './defaultTheme'; declare type DeepPartial = { [P in keyof T]?: DeepPartial; }; export interface Props { /** * A custom theme object consisting of colors, linearGradients, radiuses, spacing and typography. */ theme: DeepPartial; } declare const ThemeProvider: (props: Props) => JSX.Element; export default ThemeProvider;