/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Theme, ThemeOptions } from '@mui/material/styles'; import { CustomPaletteOptions } from './palette'; export type CustomTheme = Theme & T; export interface ICustomDims { customDims: { heights: Record; widths: Record; }; } export type CustomThemeOptions> = ThemeOptions & T; export declare const createTheme: (options: CustomThemeOptions, ...args: object[]) => CustomTheme; export type ThemeCustomizations = ICustomDims & { palette: CustomPaletteOptions; spacingPx: number; }; export declare const THEME_ENCOURAGE_E4E_OPTIONS: CustomThemeOptions; export declare const THEME_ENCOURAGE_E4E: CustomTheme; export default THEME_ENCOURAGE_E4E; //# sourceMappingURL=index.d.ts.map