/** * 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 { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile list-item component. * * @tag nile-list-item * */ export declare class NileListItem extends NileElement { /** * The styles for nile-list-item * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ private readonly hasSlotController; static get styles(): CSSResultArray; iconName: string; iconSize: number; heading: string; subHeading: string; /** * Render method * @slot This is a slot test */ handleClick(e: any): void; render(): TemplateResult; } export default NileListItem; declare global { interface HTMLElementTagNameMap { 'nile-list-item': NileListItem; } }