/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { LitElement, CSSResultArray, TemplateResult, PropertyValues } from 'lit'; /** * Nile icon component. * * @tag nile-error-notification * */ export declare class NileErrorNotification extends LitElement { /** * The styles for ErrorNotification * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; errorMessage: string; color: string; protected updated(_changedProperties: PropertyValues): void; /** * Render method * @slot This is a slot test */ render(): TemplateResult; } export default NileErrorNotification; declare global { interface HTMLElementTagNameMap { 'nile-error-notification': NileErrorNotification; } }