import React from "react"; export interface ThemeProps { /** Wrap the entire app in a dark or light theme. Defaults to 'light'. */ variant?: "light" | "dark"; /** Whether to use the user preferred theme, i.e. dark or light. */ usePreferredTheme?: boolean; /** Whether to include [`@material-ui/core/CssBaseline`](https://material-ui.com/components/css-baseline/) or not. Set this to false when nesting themes. Defaults to true. */ baseline?: "scoped" | "global" | "none"; /** Whether to include touch sizing for the theme */ touch?: boolean; /** Override primary color */ primaryColor?: string; /** include font scaling for devices of 3200px and over */ includeXxl?: boolean; } export declare const Theme: React.FunctionComponent; export declare const useSetTheme: () => any; //# sourceMappingURL=Theme.d.ts.map