import { LitElement } from 'lit'; import type { ContentOrientation } from '../types.js'; /** * A container component for card action items such as buttons or icon buttons. * Actions can be positioned at the start, center, or end of the container. * * @element igc-card-actions * * @slot start - Renders items at the beginning of the actions area. * @slot - Renders items in the center of the actions area. * @slot end - Renders items at the end of the actions area. * * @example * ```html * * Like * Share * * * ``` */ export default class IgcCardActionsComponent extends LitElement { static readonly tagName = "igc-card-actions"; static styles: import("lit").CSSResult[]; static register(): void; constructor(); /** * The orientation of the actions layout. * * @attr orientation * @default 'horizontal' */ orientation: ContentOrientation; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-card-actions': IgcCardActionsComponent; } }