import React from "react"; import type { IconRendererProps } from "../types"; import { type IconName } from "../../../atoms"; type RenderIconFn = (iconName: IconName, focused: boolean, routeName: string, isFab: boolean) => React.ReactElement; export declare class IconRenderer { static renderIcon(props: IconRendererProps, renderIcon?: RenderIconFn): React.ReactElement | null; static getIconName(routeName: string, focused: boolean, icon: IconName, getTabIcon?: (routeName: string, focused: boolean) => IconName): IconName; } export {};