import { type CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Card nav can be used to group navigation items in a card. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/card-nav-carte-de-navigation/web-UaT6ppPp * * @slot media - An optional image to render at the start of the card. * @slot title-icon - An optional icon to render at the start of the card title. * @slot title - A title for the card. * @slot subtitle - A subtitle for the card. * @slot - The card's children, card nav items or card nav accordions. * */ export default class DSACardNav extends ShoelaceElement { static styles: CSSResultGroup; private readonly hasSlotController; /** Increase the border contrast in contexts where is could be hard to identify the card. */ contrastedBorders: boolean; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-card-nav': DSACardNav; } }