import React, { PropsWithChildren } from 'react';
import { IThemeInformationProvider, IUseThemeInformation, ThemeInformation } from './themeInformation.type';
export declare const ThemeInformationContext: React.Context<ThemeInformation | null>;
export declare const ThemeInformationProvider: ({ children, value, }: PropsWithChildren<IThemeInformationProvider>) => JSX.Element;
export declare const useThemeInformation: IUseThemeInformation;
