import React, { FC, ReactNode } from "react"; import { ITheme } from "./_types/ITheme"; /** * A context for the LaunchMenu theme */ export declare const ThemeContext: React.Context; /** * Retrieves the theme for the application */ export declare const useTheme: () => ITheme; /** * The provider for the theme context */ export declare const ThemeProvider: FC<{ theme?: ITheme; children: ReactNode; }>; //# sourceMappingURL=ThemeContext.d.ts.map