import { LitElement } from 'lit'; /** * Directory-style cluster of hand-authored links. * * @slot - Links or lists. * @csspart chrome - The outer frame. * @csspart heading - Heading wrapper. * @csspart content - Link content wrapper. */ export declare class W1cLinkCluster extends LitElement { heading: string; columns: 'auto' | 'one' | 'two'; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-link-cluster': W1cLinkCluster; } }