import type { ThemeName } from './types'; export declare const UniwindContext: import("react").Context<{ scopedTheme: ThemeName | null; rtl: boolean | null; }>; export declare const useUniwindContext: () => { scopedTheme: ThemeName | null; rtl: boolean | null; };