import { LitElement } from 'lit'; /** * Dense endpoint/status row for admin lists. * * @slot - Row details. * @slot actions - Optional row actions. * @csspart chrome - Row frame. * @csspart method - Method badge. * @csspart content - Text content wrapper. * @csspart path - Endpoint path. * @csspart status - Status text. * @csspart actions - Actions slot wrapper. */ export declare class W1cEndpointRow extends LitElement { method: string; path: string; status: string; variant: 'neutral' | 'good' | 'warning' | 'danger'; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-endpoint-row': W1cEndpointRow; } }