import type { PropsWithChildren } from 'react'; import type { IconBaseProps, IconProps } from '../types/index'; type ConfigContextType = Omit; type ConfigProviderProps = PropsWithChildren; declare const useConfigContext: (props?: IconProps) => ConfigContextType & IconBaseProps & import("react").SVGProps; declare function ConfigProvider({ children, ...restProps }: ConfigProviderProps): JSX.Element; declare namespace ConfigProvider { var displayName: string; } export default ConfigProvider; export { useConfigContext }; export type { ConfigProviderProps };