import { ConfigProps } from "../typings/Config"; import React from "react"; type Props = { graphConfig: ConfigProps; children: React.ReactNode; }; type ConfigContextProps = { config: ConfigProps; }; export declare const ConfigContext: React.Context; declare function ConfigController({ graphConfig, children }: Props): React.JSX.Element; export default ConfigController;