import type { ThemeUpdates } from '../../../index'; import { type ActiveThemeModeSelection } from './adminThemeModel'; interface ActiveThemeAdminState { readonly mode: 'light' | 'dark'; readonly selection: ActiveThemeModeSelection | null; readonly setMode: (mode: 'light' | 'dark') => void; readonly updateTheme: (updates: ThemeUpdates) => void; } export declare function useActiveThemeAdmin(): ActiveThemeAdminState; export {}; //# sourceMappingURL=useActiveThemeAdmin.d.ts.map