import { type ReactNode } from 'react';
import type { IconProps } from '../type';
export type IconContentConfig = Omit<IconProps, 'icon' | 'ref'>;
export declare const IconContext: import("react").Context<IconContentConfig>;
export declare const IconProvider: import("react").NamedExoticComponent<{
    children: ReactNode;
    config?: IconContentConfig | undefined;
}>;
export declare const useIconContext: () => IconContentConfig;
