import { LitElement } from 'lit'; /** * Webring navigation strip with previous, home, random, and next slots. * * @slot - Optional ring description. * @slot previous - Previous site link. * @slot home - Ring home link. * @slot random - Random site link. * @slot next - Next site link. * @csspart chrome - The outer ring frame. * @csspart title - Ring title. * @csspart content - Description wrapper. * @csspart nav - Navigation wrapper. */ export declare class W1cWebring extends LitElement { name: string; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-webring': W1cWebring; } }