import type { GraphOptions } from '@ant-design/graphs'; import type { CommonConfig } from '@ant-design/plots'; import type { MapProps } from '../../Map'; import type { Charts } from '../../types'; export declare function useComponentGlobalConfig(name: Charts): Record | undefined; export declare function usePlotConfig(name: Charts, defaultConfig: Partial | ((props: Partial) => Partial), props: Partial): Partial; export declare function useMapConfig(name: Charts, props: T): { mapType: string | undefined; token: string | undefined; } & T; export declare function useGraphConfig>(name: Charts, defaultConfig: Partial, props: Partial): { [x: string]: any; };