import type { ActionCardVariant } from './action-card.types'; export declare class IxActionCard { /** * Card variant */ variant: ActionCardVariant; /** * Card icon */ icon: string | undefined; /** * ARIA label for the icon * * @since 3.2.0 */ ariaLabelIcon?: string; /** * Card heading */ heading?: string; /** * Card subheading */ subheading?: string; /** * Card selection */ selected: boolean; /** * ARIA label for the card * * @since 3.2.0 */ ariaLabelCard?: string; /** * If true, disables hover and active styles and changes cursor to default */ passive: boolean; private getSubheadingTextColor; render(): any; }