import type { CSSResultGroup } from 'lit'; import DSADivider from '../divider/divider'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Footer mandatory mentions displays text elements separated by a divider within a [footer](/components/footer) context. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/pied-de-page-footer/mentions-obligatoires-mandatory-mentions/web-kPSE1WTf * * @dependency dsa-divider * * @slot text-left - Used to display content to the left of the divider. * @slot text-right - Used to display content to the right of the divider. * */ export default class DSAFooterMandatoryMentions extends ShoelaceElement { static styles: CSSResultGroup; static dependencies: { 'dsa-divider': typeof DSADivider; }; private readonly hasSlotController; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-footer-mandatory-mentions': DSAFooterMandatoryMentions; } }