import * as React from 'react';
export interface ThemeProps {
    disableInjection?: boolean;
    /** Custom theme to be merged with the default theme. */
    theme?: any;
}
export declare const ThemeProvider: React.FC<ThemeProps>;
