import React from "react"; export interface IAppConfig { mode: "light" | "dark"; } export declare const defaultAppConfig: IAppConfig; export declare const AppConfig: React.Context; export declare function useAppConfig(): IAppConfig; export declare type WithAppConfigProps = { config: IAppConfig; }; export declare function withAppConfig(WrappedComponent: React.ComponentType): React.FC;