import { LitElement } from 'lit';
import type { ContentOrientation } from '../types.js';
/** A container for card action items like buttons
 * @element igc-card-actions
 *
 * @slot start - Renders items at the beginning of actions area
 * @slot - Renders items at the middle of actions area
 * @slot end - Renders items at the end of actions area
 */
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.
     * @attr
     */
    orientation: ContentOrientation;
    protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'igc-card-actions': IgcCardActionsComponent;
    }
}
