import { type Theme } from "../theme";
import { type ReactNode } from "react";
import { type Themes } from "../constants";
type Props = {
    children: ReactNode;
    overrideTheme?: Theme;
};
interface ITheme {
    theme: Themes;
    toggleTheme: () => void;
}
export declare const useThemeContext: () => ITheme;
export declare const DripsyThemeProvider: ({ children, overrideTheme }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=DripsyThemeProvider.d.ts.map