import * as React from 'react'; import { FunctionComponent } from 'react'; import { EditorConfig } from '../../types/editor-config'; export declare const ConfigContext: React.Context; interface ConfigContextProviderProps { config?: EditorConfig; licenseKey: string; children: any; } export declare const ConfigContextProvider: FunctionComponent; export declare const ConfigContextConsumer: React.Consumer; export declare const useConfigContext: () => any; export {};