///
type ConfigState = {
workdir: string;
dbdir: string;
argv: any;
config: any;
updateConfig: any;
};
declare const ConfigContext: import("react").Context;
export declare function ConfigProvider(props: any): JSX.Element;
declare const useConfig: () => ConfigState;
export { ConfigContext, useConfig };