import { Theme } from './AltroneApplication.types.ts'; export type ThemeContextType = { theme: Theme; setTheme: (theme: Theme) => void; }; export declare const ThemeContext: import('react').Context; export declare const useAltroneTheme: () => ThemeContextType;