import { CSSInterpolation } from '@emotion/css'; import { ColorScheme } from '../shared/config/colors'; import { ICommonTheme } from '../store/novu-theme-provider.context'; import { INovuTheme } from '../store/novu-theme.context'; export type CSSFunctionInterpolation = (args: { theme: INovuTheme; common: ICommonTheme; colorScheme: ColorScheme; }) => CSSInterpolation; export type CSSFunctionOrObject = CSSFunctionInterpolation | CSSInterpolation; export type ObjectWithRoot = T & { root?: CSSFunctionOrObject; }; //# sourceMappingURL=types.d.ts.map