import React from 'react'; import type { ConfigConsumerProps as AntdConfigConsumerProps } from 'antd/es/config-provider/context'; import type { AnimationConfig } from './AnimationContext'; export interface ConfigConsumerProps extends AntdConfigConsumerProps { animation?: AnimationConfig; } declare const ConfigContext: React.Context; export declare const ConfigConsumer: React.Consumer; export type { Theme, CSPConfig, DirectionType } from 'antd/es/config-provider/context'; export { withConfigConsumer } from 'antd/es/config-provider/context'; export { ConfigContext };