import { Theme } from './createMuiTheme'; import { PropInjector } from '@material-ui/types'; export interface WithTheme { theme: Theme; } export interface ThemedComponentProps extends Partial { innerRef?: React.Ref | React.RefObject; } declare const withTheme: PropInjector; export default withTheme;