/** * 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 { TemplateResult } from 'lit'; import NileElements from '../internal/nile-element'; import { CSSResultGroup } from 'lit'; /** * Nile icon component. * * @tag nile-card * */ export declare class NileCard extends NileElements { static styles: CSSResultGroup; private readonly hasSlotController; active: boolean; disabled: boolean; render(): TemplateResult<1>; } export default NileCard; declare global { interface HTMLElementTagNameMap { 'nile-card': NileCard; } }