import React from "react"; export declare type IconRenderFunction = (props: { name: string; size?: number; color?: string; }) => React.ReactElement; export interface IconsProviderProps { render: IconRenderFunction | null; } export declare const IconsContext: React.Context; declare const IconsProvider: React.FC; export default IconsProvider;