import { LitElement } from 'lit'; /** * Card component for content grouping * * @slot header - Header content * @slot - Default slot for main content * @slot footer - Footer content * * @csspart card - The card element * @csspart header - The header section * @csspart content - The content section * @csspart footer - The footer section */ export declare class UICard extends LitElement { static styles: import("lit").CSSResult; variant: 'default' | 'primary' | 'success' | 'warning' | 'danger'; elevated: boolean; clickable: boolean; ariaLabel: string | null; ariaLabelledby?: string; ariaDescribedby?: string; headingLevel: '1' | '2' | '3' | '4' | '5' | '6'; /** * Handle click event for clickable cards */ private _handleClick; /** * Handle keyboard events for clickable cards */ private _handleKeyDown; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'ui-card': UICard; } } //# sourceMappingURL=card.d.ts.map