import React from 'react'; export interface ThemeProviderProps { theme?: 'light' | 'dark'; children: React.ReactNode; } export declare const EpilotThemeProvider: ({ theme, children }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;