import { type FC } from 'react'; import type { ThemeProviderProps } from './type'; type AntdProviderProps = Pick, 'theme' | 'prefixCls' | 'getStaticInstance' | 'children' | 'staticInstanceConfig'>; declare const AntdProvider: FC; export default AntdProvider;