/*! * @license * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { AfterContentInit } from '@angular/core'; import { ThemePalette } from '@angular/material/core'; import * as i0 from "@angular/core"; export declare const DEFAULT_ICON_VALUE = "settings"; /** @deprecated Use material icon with aria-hidden="true" attribute instead. */ export declare class IconComponent implements AfterContentInit { private readonly ALIAS_MAP; private readonly elementRef; private _value; private _isSvg; /** Theme color palette for the component. */ color: ThemePalette; /** Icon font set */ fontSet: string; get value(): string; /** Icon value, which can be either a ligature name or a custom icon in the format `[namespace]:[name]`. */ set value(value: string); get isSvg(): boolean; /** Is icon of svg type */ set isSvg(isSvg: boolean); ngAfterContentInit(): void; private hasMappedAlias; private isCustom; private getTextNode; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }