import type { VastIcon, RenderedVastIcon } from '../../../types'; interface UpdateIconOptions { drawnIcons: RenderedVastIcon[]; placeholder: HTMLElement; } export declare const updateIcon: (icon: VastIcon, iconElement: HTMLElement, { drawnIcons, placeholder }: UpdateIconOptions) => RenderedVastIcon; export {};