export declare class Icon { /** The icon name (eg: ai-close) */ name: string; /** The ARIA label */ ariaLabel?: string; /** Additional CSS class(es) */ branding?: string; /** * Inject SVG icons from core branding into page */ fetchAntwerpIcons: () => Promise; render(): any; }