import * as React from 'react'; declare type AnyIfEmpty = keyof T extends never ? any : T; export interface ThemeProviderProps { children?: React.ReactChild; theme: T; } declare const withDevtools: (Component: React.ComponentType>) => React.FunctionComponent>>; export default withDevtools;