import type { ThemeModel } from '../models/ThemeModel'; import type { ToastModel } from '../models/ToastModel'; /** * Context for the theme. Should store the actual theme and a function to toggle it. */ export declare const ZenThemeContext: import("react").Context<{ ZenTheme: ThemeModel; ZenDrawer: boolean; toggleTheme: (theme: ThemeModel) => void; toggleDrawer: () => void; showToast: (message: string, config: ToastModel) => void; toast: { message: string; config: ToastModel; }; }>; //# sourceMappingURL=ZenThemeContext.d.ts.map