import React from 'react'; import type { Theme } from '../types'; /** * The provider component for the video player theme. * This component provides the theme to all its children. */ export declare const ThemeProvider: React.FC<{ theme: Theme; children: React.ReactNode; }>; /** * A hook to use the theme context. * This hook provides access to the theme object. */ export declare const useTheme: () => Theme; //# sourceMappingURL=ThemeProvider.d.ts.map