import type { Theme, ThemeSettings } from './entities';
export type OzenThemeContextValue = {
    theme: Theme;
    settings: ThemeSettings;
};
export declare const OzenThemeContextDefaultValue: OzenThemeContextValue;
export declare const OzenThemeContext: import("react").Context<OzenThemeContextValue>;
export declare const useOzenThemeContext: () => OzenThemeContextValue;
