import React from "react"; import { DesignTypes } from '../../typings/types'; import { ButtonConfigType } from "./button"; import { MessageConfigType } from "./message"; import { ModalConfigType } from "./modal"; import { DrawerConfigType } from "./drawer"; import { PageConfigType } from "./page"; export declare type GlobalConfigType = { theme?: DesignTypes['Theme']; locale?: DesignTypes['Locale']; classNamePrefix?: string; ButtonConfig?: ButtonConfigType; MessageConfig?: MessageConfigType; ModalConfig?: ModalConfigType; DrawerConfig?: DrawerConfigType; PageConfig?: PageConfigType; }; export declare const GlobalContextValue: GlobalConfigType; export declare const GlobalContext: React.Context;