import { IconProps } from "../type.mjs";
import { ReactNode } from "react";
//#region src/Icon/components/IconProvider.d.ts
type IconContentConfig = Omit<IconProps, 'icon' | 'ref'>;
declare const IconContext: import("react").Context<IconContentConfig>;
declare const IconProvider: import("react").NamedExoticComponent<{
  children: ReactNode;
  config?: IconContentConfig;
}>;
declare const useIconContext: () => IconContentConfig;
//#endregion
export { IconContentConfig, IconContext, IconProvider, useIconContext };
//# sourceMappingURL=IconProvider.d.mts.map