import { ITheme } from '../../types/scss/Theme';
export declare const ThemeContext: import("react").Context<ITheme<Record<string, string>> | null>;
/**
 * Custom hook to get your theme object in React components from ThemeProvider.
 */
export declare const useScssTheme: <T extends Record<string, string>>() => ITheme<T>;
