import React from "react"; import type { IIconConfig, Icon } from "./IconWrapper"; export interface IconProviderProps { config?: Partial; registry?: Record; children: React.ReactNode; } export declare const IconProvider: ({ config, registry, children }: IconProviderProps) => import("react/jsx-runtime").JSX.Element; export declare function useIconConfig(): IIconConfig; export declare function useIconRegistry(): Record;