import React from 'react'; import { RecursivePartial } from '@styles'; import { Theme } from './types'; export type ThemeProp = RecursivePartial; export declare const useTheme: () => Theme; interface Props { theme: ThemeProp; children: React.ReactNode; } export declare function ThemeProvider({ theme: customTheme, children }: Props): React.JSX.Element; export {};