import { default as React } from 'react'; type StoryMode = 'dark' | 'light'; export type ColorTheme = 'blue' | 'lara' | 'green' | 'purple' | 'orange' | 'indigo' | 'rose' | 'amber' | 'teal' | 'emerald' | 'fuchsia' | 'slate'; export declare const colorThemes: ColorTheme[]; interface StoryThemeContextValue { theme: StoryMode; colorTheme: ColorTheme; toggleTheme: () => void; setColorTheme: (t: ColorTheme) => void; isDark: boolean; } export declare const StoryThemeProvider: React.FC<{ children: React.ReactNode; }>; export declare const useStoryTheme: () => StoryThemeContextValue; export {};