import { type ReactNode } from "react";
import { ThemeMode } from "../enums";
export type ThemeProviderProps = {
    children: ReactNode;
    defaultTheme?: ThemeMode;
    storageKey?: string;
};
export declare function ThemeProvider({ children, defaultTheme, storageKey, ...props }: ThemeProviderProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ThemeProvider.d.ts.map