import { IconRegistry } from "./icon-registry.service"; export interface RenderIconParams { host: HTMLElement; iconRegistry: IconRegistry; name: string; size: number; appearance?: "outlined" | "filled"; color?: string; ariaHidden: boolean; ariaLabel?: string; } export declare const renderIcon: ({ host, iconRegistry, name, size, appearance, color, ariaHidden, ariaLabel, }: RenderIconParams) => void;