import { FC } from 'react';
import { GlobalConfig } from '../../types/global-config';
export declare const ConfigContext: import('react').Context<import('../../types/global-config').GlobalContextConfig>;
export declare const ConfigProvider: FC<{
    children: React.ReactNode;
    config?: GlobalConfig;
}>;
